:root {
  --screenful: 100vh;
}

@supports (height: 100svh) {
  :root {
    --screenful: 100svh;
  }
}
:root {
  --color-bg: #FFFFFF;
  --color-bg-deep: #1C1F23;
  --color-sky: #8FC4E8;
  --color-sky-light: #C7E2F4;
  --color-sky-pale: #EAF4FB;
  --color-ink: #1C1F23;
  --color-ink-mid: #6B7480;
  --color-ink-dim: #9CA5B0;
  --color-card-bg: #FFFFFF;
  --color-card-border: rgba(143, 196, 232, 0.4);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes driftAlt {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 12px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lineBreathe {
  0%, 100% {
    opacity: 0.18;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes rise {
  from {
    opacity: 0;
    translate: 0 20px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes sheen {
  0% {
    transform: translateX(-130%) skewX(-18deg);
  }
  100% {
    transform: translateX(230%) skewX(-18deg);
  }
}
@keyframes scrollCue {
  0% {
    transform: translateY(-12px);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}
@keyframes twinkle {
  0%, 100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.75;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}
@keyframes photoIn {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Outfit", system-ui, sans-serif;
  background-color: #FFFFFF;
  background-image: radial-gradient(ellipse 46% 40% at 12% 8%, rgba(143, 196, 232, 0.1), transparent 70%), radial-gradient(ellipse 44% 42% at 88% 22%, rgba(199, 226, 244, 0.16), transparent 70%), radial-gradient(ellipse 52% 46% at 82% 88%, rgba(143, 196, 232, 0.1), transparent 72%), radial-gradient(ellipse 42% 40% at 8% 92%, rgba(199, 226, 244, 0.16), transparent 70%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #1C1F23;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.screen-ruler {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  height: 100svh;
  visibility: hidden;
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

p {
  margin: 0;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 300;
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: rgba(143, 196, 232, 0.32);
  color: #1C1F23;
}

::placeholder {
  color: #9CA5B0;
}

input:focus {
  outline: none;
}

.shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.shell--narrow {
  max-width: 560px;
}

.section {
  padding: 120px 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
}
.section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section--hair {
  border-top: 1px solid rgba(28, 31, 35, 0.09);
}
.section--flow, .section--flow.is-visible {
  transform: none;
}

.label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #9CA5B0;
  text-align: center;
  margin: 0 0 12px;
}

.button {
  position: relative;
  display: inline-block;
  padding: 15px 34px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 100px;
  overflow: hidden;
  background: #1C1F23;
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  transition: all 0.3s ease;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-130%) skewX(-18deg);
  pointer-events: none;
}
.button:hover {
  background: #2A2E35;
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(143, 196, 232, 0.32);
}
.button:hover::before {
  animation: sheen 0.85s ease;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px 0;
  opacity: var(--nav-opacity, 1);
  transform: translate3d(0, var(--nav-y, 0px), 0);
}
.nav--idle {
  pointer-events: none;
}
.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.nav--scrolled .nav__inner {
  background: rgba(157, 199, 230, 0.6);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transform: translate3d(var(--brand-x, 0px), 0, 0);
}
.nav__logo {
  display: block;
  height: 20px;
  width: auto;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.45s ease, transform 0.45s ease;
}
.nav__link:hover {
  color: #FFFFFF;
}
.nav__toggle {
  display: none;
  position: relative;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.nav__toggle-bar {
  position: absolute;
  top: 50%;
  left: 6px;
  margin-top: -0.75px;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav__toggle-bar:nth-child(1) {
  transform: translateY(-4px);
}
.nav__toggle-bar:nth-child(2) {
  transform: translateY(4px);
}
.nav--open .nav__toggle-bar:nth-child(1) {
  transform: rotate(45deg);
}
.nav--open .nav__toggle-bar:nth-child(2) {
  transform: rotate(-45deg);
}
.nav--choreo .nav__link {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
}
.nav--choreo .nav__link.is-in {
  opacity: 1;
  transform: none;
}
.nav--choreo .nav__toggle {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.nav--choreo .nav__toggle.is-in {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
@media (max-width: 900px) {
  .nav__toggle {
    display: block;
  }
  .nav__inner {
    flex-wrap: wrap;
  }
  .nav__menu {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    padding-top: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), padding-top 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .nav--open .nav__menu {
    max-height: 320px;
    padding-top: 6px;
  }
  .nav__link {
    padding: 13px 2px;
    font-size: 15px;
  }
  .nav__link + .nav__link {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav--open .nav__link {
    opacity: 1;
    transform: none;
  }
  .nav--open .nav__inner {
    padding-bottom: 6px;
    background: rgba(157, 199, 230, 0.6);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
  }
}

.hero,
.section {
  scroll-margin-top: 78px;
}

.hero-pin {
  position: relative;
  height: calc(var(--screenful) * 3);
}

.hero {
  --hero-light: 0;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__bg-layer--dark {
  background-image: url("../images/dark-planet.png");
}
.hero__bg-layer--light {
  background-image: url("../images/light-planet.png");
  opacity: 0;
  will-change: opacity;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, calc(0.1 * var(--hero-light))) 0%, transparent 32%, transparent 68%, rgba(234, 244, 251, calc(0.55 * var(--hero-light))) 100%);
}
.hero__title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.hero__questions {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.hero__question {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: clamp(13px, 1.5vw, 19px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #EAF4FB;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -50%) translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero__question::before {
  content: "";
  flex: none;
  width: calc(var(--s, 1) * 26px);
  height: calc(var(--s, 1) * 26px);
  background-image: linear-gradient(90deg, transparent 6%, rgba(255, 255, 255, 0.55) 50%, transparent 94%), linear-gradient(180deg, transparent 6%, rgba(255, 255, 255, 0.55) 50%, transparent 94%), radial-gradient(circle at 50% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 8%, rgba(199, 226, 244, 0.6) 18%, rgba(143, 196, 232, 0.28) 34%, rgba(143, 196, 232, 0) 68%);
  background-size: 100% 1px, 1px 100%, 100% 100%;
  background-position: center, center, center;
  background-repeat: no-repeat;
  animation: starTwinkle 5.5s ease-in-out infinite;
}
.hero__question:nth-child(1)::before {
  animation-duration: 4.85s;
  animation-delay: -0.7s;
}
.hero__question:nth-child(2)::before {
  animation-duration: 5.3s;
  animation-delay: -1.4s;
}
.hero__question:nth-child(3)::before {
  animation-duration: 5.75s;
  animation-delay: -2.1s;
}
.hero__question:nth-child(4)::before {
  animation-duration: 6.2s;
  animation-delay: -2.8s;
}
.hero__question:nth-child(5)::before {
  animation-duration: 6.65s;
  animation-delay: -3.5s;
}
.hero__question:nth-child(6)::before {
  animation-duration: 7.1s;
  animation-delay: -4.2s;
}
.hero__question:nth-child(7)::before {
  animation-duration: 7.55s;
  animation-delay: -4.9s;
}
.hero__question:nth-child(8)::before {
  animation-duration: 8s;
  animation-delay: -5.6s;
}
.hero__question.is-in {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}
@media (max-width: 600px) {
  .hero__question:nth-child(3), .hero__question:nth-child(6), .hero__question:nth-child(8) {
    display: none;
  }
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.45), transparent);
  animation: rise 1s ease both;
  animation-delay: 1s;
  transition: opacity 0.4s ease;
}
.hero__scroll.is-gone {
  animation: none;
  opacity: 0;
}
.hero__scroll::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 9px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.8);
  animation: scrollCue 2.6s ease-in-out infinite;
}

.say {
  text-align: center;
}
.say__lead {
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #1C1F23;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0;
}
.is-visible .say__lead {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.05s;
}
.say__lead span {
  display: block;
}
.say__body {
  font-size: clamp(15px, 2.4vw, 18px);
  color: #6B7480;
  font-weight: 300;
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto;
  opacity: 0;
}
.is-visible .say__body {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.22s;
}
.say__turn {
  font-size: clamp(17px, 2.8vw, 21px);
  font-weight: 400;
  color: #1C1F23;
  line-height: 1.6;
  max-width: 520px;
  margin: 54px auto 22px;
  opacity: 0;
}
.is-visible .say__turn {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.3s;
}
.say__list {
  font-size: clamp(14px, 2.2vw, 16px);
  color: #6B7480;
  font-weight: 300;
  line-height: 2;
  max-width: 520px;
  margin: 0 auto;
  opacity: 0;
}
.is-visible .say__list {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.38s;
}
.say__list span {
  display: block;
}

.signs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin: 0 auto 30px;
  max-width: 640px;
}
@media (max-width: 600px) {
  .signs {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }
}
.signs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}
.is-visible .signs__item {
  animation: rise 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.is-visible .signs__item:nth-child(1) {
  animation-delay: 0.18s;
}
.is-visible .signs__item:nth-child(2) {
  animation-delay: 0.31s;
}
.is-visible .signs__item:nth-child(3) {
  animation-delay: 0.44s;
}
.signs__icon {
  color: #6B7480;
  display: flex;
}
.signs__icon svg {
  width: 26px;
  height: 26px;
}
.signs__label {
  font-size: 14px;
  font-weight: 400;
  color: #1C1F23;
}
.signs__note {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: #9CA5B0;
  max-width: 170px;
  margin-top: -6px;
  text-align: center;
}

.story {
  background-color: #1C1F23;
  background-image: radial-gradient(ellipse 55% 60% at 15% 0%, rgba(143, 196, 232, 0.18), transparent 60%), radial-gradient(ellipse 60% 65% at 88% 100%, rgba(199, 226, 244, 0.12), transparent 62%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  overflow: hidden;
}
.story__inner {
  max-width: 540px;
  width: 100%;
  text-align: center;
}
.story__photo {
  position: relative;
  width: min(300px, 66vw);
  aspect-ratio: 4/5;
  margin: 0 auto 60px;
  border-radius: 8px;
  overflow: hidden;
  background: radial-gradient(120% 90% at 35% 22%, rgba(143, 196, 232, 0.22), transparent 60%), linear-gradient(150deg, #323844, #171a1f 72%);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.story__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 50% 40%, transparent 55%, rgba(0, 0, 0, 0.45));
}
.story__beat {
  font-size: clamp(19px, 3.2vw, 28px);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
}
.story__beat:last-child {
  margin-bottom: 0;
}
.story__beat--turn {
  color: #C7E2F4;
  font-weight: 400;
  margin-top: 12px;
}
.story.is-visible .story__photo {
  animation: photoIn 1.6s ease both;
}
.story.is-visible .story__beat:nth-of-type(1) {
  animation: rise 1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 1.2s;
}
.story.is-visible .story__beat:nth-of-type(2) {
  animation: rise 1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 2.6s;
}
.story.is-visible .story__beat--turn {
  animation: rise 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 4.2s;
}

.moments {
  text-align: center;
}
.moments__list {
  font-size: clamp(17px, 2.8vw, 21px);
  font-weight: 300;
  color: #1C1F23;
  line-height: 2.2;
  margin: 0 0 30px;
}
.moments__list span {
  display: block;
  opacity: 0;
}
.is-visible .moments__list span {
  animation: rise 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.is-visible .moments__list span:nth-child(1) {
  animation-delay: 0.06s;
}
.is-visible .moments__list span:nth-child(2) {
  animation-delay: 0.19s;
}
.is-visible .moments__list span:nth-child(3) {
  animation-delay: 0.32s;
}
.is-visible .moments__list span:nth-child(4) {
  animation-delay: 0.45s;
}
.moments__note {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9CA5B0;
  font-weight: 500;
  opacity: 0;
}
.is-visible .moments__note {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.62s;
}

.lede {
  text-align: center;
}
.lede__count {
  font-size: clamp(20px, 3.4vw, 26px);
  font-weight: 300;
  line-height: 1.5;
  color: #1C1F23;
  margin: 0 auto 40px auto;
  max-width: 480px;
}
.lede__count span {
  display: block;
}
.lede__bridge {
  font-size: 15px;
  color: #9CA5B0;
  font-weight: 300;
  margin: 0 0 28px;
}
.lede__questions {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: #1C1F23;
  line-height: 1.9;
  margin: 0 0 44px;
}
.lede__questions span {
  display: block;
}
.lede__resolve {
  font-size: clamp(15px, 2.4vw, 17px);
  color: #6B7480;
  font-weight: 300;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.step {
  display: flex;
  flex-direction: column;
  padding: 32px 26px;
  border-radius: 22px;
  opacity: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  background: #FFFFFF;
  border: 1px solid rgba(143, 196, 232, 0.4);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 20px 50px rgba(28, 31, 35, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.step:hover {
  transform: translateY(-5px);
  background: #EAF4FB;
  box-shadow: 0 30px 66px rgba(143, 196, 232, 0.22);
}
.is-visible .step {
  animation: rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.is-visible .step:nth-child(2) {
  animation-delay: 0.13s;
}
.is-visible .step:nth-child(3) {
  animation-delay: 0.26s;
}
.is-visible .step:nth-child(4) {
  animation-delay: 0.39s;
}
.step__name {
  font-size: 18px;
  font-weight: 400;
  color: #1C1F23;
  margin: 0 0 12px;
}
.step__intro {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #6B7480;
  margin: 0 0 16px;
}
.step__lines {
  font-size: 14px;
  color: #1C1F23;
  font-weight: 300;
  line-height: 2;
  margin: 0;
}
.step__lines span {
  display: block;
}
.step__note {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: #9CA5B0;
  margin: 14px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(28, 31, 35, 0.09);
}

.nots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border-radius: 22px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(143, 196, 232, 0.4);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 20px 50px rgba(28, 31, 35, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
@media (max-width: 600px) {
  .nots {
    grid-template-columns: 1fr;
  }
}

.not {
  padding: 34px 30px;
  position: relative;
  opacity: 0;
  transition: background 0.4s ease;
}
.not:hover {
  background: #EAF4FB;
}
.is-visible .not {
  animation: rise 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.is-visible .not:nth-child(2) {
  animation-delay: 0.08s;
}
.is-visible .not:nth-child(3) {
  animation-delay: 0.16s;
}
.is-visible .not:nth-child(4) {
  animation-delay: 0.24s;
}
.not + .not {
  box-shadow: -1px 0 0 rgba(143, 196, 232, 0.4);
}
.not:nth-child(n+3) {
  box-shadow: 0 -1px 0 rgba(143, 196, 232, 0.4);
}
.not:nth-child(4) {
  box-shadow: -1px 0 0 rgba(143, 196, 232, 0.4), 0 -1px 0 rgba(143, 196, 232, 0.4);
}
@media (max-width: 600px) {
  .not + .not {
    box-shadow: 0 -1px 0 rgba(143, 196, 232, 0.4);
  }
  .not:nth-child(n+3) {
    box-shadow: 0 -1px 0 rgba(143, 196, 232, 0.4);
  }
  .not:nth-child(4) {
    box-shadow: 0 -1px 0 rgba(143, 196, 232, 0.4);
  }
}
.not__title {
  font-size: 16px;
  font-weight: 400;
  color: #1C1F23;
  margin: 0 0 10px;
}
.not__desc {
  font-size: 14px;
  color: #9CA5B0;
  font-weight: 300;
  line-height: 1.6;
}

.idea {
  text-align: center;
}
.idea__big {
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 auto 32px;
  color: #1C1F23;
  opacity: 0;
}
.is-visible .idea__big {
  animation: rise 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.05s;
}
.idea__big span {
  display: block;
}
.idea__big em {
  font-style: normal;
  color: #1C1F23;
}
.idea__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  margin: 0 0 48px;
  opacity: 0;
}
.is-visible .idea__icons {
  animation: rise 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.16s;
}
.idea__icon {
  color: #9CA5B0;
  display: flex;
}
.idea__icon svg {
  width: 26px;
  height: 26px;
}
.idea__small {
  font-size: clamp(16px, 2.6vw, 19px);
  color: #6B7480;
  font-weight: 300;
  line-height: 1.9;
  max-width: 460px;
  margin: 0 auto 16px;
  opacity: 0;
}
.is-visible .idea__small {
  animation: rise 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.28s;
}
.idea__small span {
  display: block;
}
.idea__small strong {
  color: #1C1F23;
  font-weight: 400;
}

@property --demo-light {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
.demo-pin {
  position: relative;
  height: calc(var(--screenful) * 3.4);
  background: #EAF4FB;
}

.demo {
  --demo-light: 0;
  --demo-dawn: calc(clamp(0, calc(var(--demo-light) / 0.35), 1) * 100%);
  --demo-morning: calc(clamp(0, calc((var(--demo-light) - 0.38) / 0.3), 1) * 100%);
  --demo-day: calc(clamp(0, calc((var(--demo-light) - 0.72) / 0.28), 1) * 100%);
  --demo-sky: color-mix(in srgb, #EAF4FB var(--demo-day), color-mix(in srgb, #4B7FB2 var(--demo-morning), color-mix(in srgb, #17325C var(--demo-dawn), #071022)));
  --demo-mix: calc(clamp(0, calc((var(--demo-light) - 0.75) / 0.045), 1) * 100%);
  --demo-mix-mark: calc(clamp(0, calc((var(--demo-light) - 0.85) / 0.045), 1) * 100%);
  --demo-ink: color-mix(in srgb, #1C1F23 var(--demo-mix), #FFFFFF);
  --demo-ink-soft: color-mix(in srgb, #6B7480 var(--demo-mix-mark), rgba(255, 255, 255, 0.8));
  --demo-ink-dim: color-mix(in srgb, #9CA5B0 var(--demo-mix-mark), rgba(255, 255, 255, 0.7));
  --demo-mark: color-mix(in srgb, #8FC4E8 var(--demo-mix-mark), #FFFFFF);
  --demo-mark-ink: color-mix(in srgb, #FFFFFF var(--demo-mix-mark), #071022);
  --demo-accent: color-mix(in srgb, #1C1F23 var(--demo-mix-mark), #8FC4E8);
  --demo-line: color-mix(in srgb, #8FC4E8 var(--demo-mix-mark), rgba(255, 255, 255, 0.66));
  --demo-edge: color-mix(in srgb, rgba(143, 196, 232, 0.4) var(--demo-mix-mark), rgba(255, 255, 255, 0.14));
  --demo-panel: color-mix(in srgb, rgba(255, 255, 255, 0.94) var(--demo-mix), rgba(7, 16, 34, 0.86));
  position: sticky;
  top: 0;
  min-height: var(--screenful);
  display: flex;
  align-items: center;
  padding: 96px 0;
  overflow: hidden;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #EAF4FB 100%);
  transition: opacity 1s ease, --demo-light 0.9s ease;
}
.demo .shell {
  position: relative;
  z-index: 1;
  width: 100%;
}
.demo__sub {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #6B7480;
  max-width: 460px;
  margin: 0 auto 30px;
  opacity: 0;
}
.is-visible .demo__sub {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.1s;
}
.demo__note {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: #9CA5B0;
  max-width: 420px;
  margin: 16px auto 0;
  opacity: 0;
}
.is-visible .demo__note {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.36s;
}
.demo__caption {
  min-height: 34px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: #6B7480;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.demo__caption.is-in {
  opacity: 1;
}
.demo__caption strong {
  font-weight: 500;
  color: #1C1F23;
}
.demo__caption span {
  margin: 0 8px;
  color: #8FC4E8;
}
.demo__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin: 18px auto 0;
  font-size: 12px;
  color: #9CA5B0;
  opacity: 0;
}
.is-visible .demo__legend {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.3s;
}
.demo__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.demo__legend-icon {
  color: #8FC4E8;
  font-size: 12px;
}
@media (max-height: 780px) {
  .demo {
    padding: 56px 0;
  }
}
@media (max-width: 600px) {
  .demo {
    padding: 76px 0 24px;
  }
  .demo .head {
    margin-bottom: 26px;
  }
  .demo__caption {
    min-height: 30px;
    margin-top: 12px;
    font-size: 12px;
  }
  .demo__legend {
    gap: 5px 14px;
    margin-top: 14px;
    font-size: 11px;
  }
  .demo__note {
    margin-top: 12px;
    font-size: 11px;
  }
}
@media (max-width: 600px) and (max-height: 640px) {
  .demo__note {
    display: none;
  }
}

.constellation {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background-color: var(--demo-sky);
  opacity: 0;
}
.is-visible .constellation {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.06s;
}
.constellation__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(ellipse 70% 55% at 74% 8%, rgba(255, 255, 255, 0.12), transparent 70%), radial-gradient(ellipse 60% 45% at 14% 92%, rgba(255, 255, 255, 0.07), transparent 72%), linear-gradient(162deg, rgba(255, 255, 255, 0.07), transparent 55%);
}
.constellation__scroll {
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .constellation__scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  .constellation__scroll::-webkit-scrollbar {
    display: none;
  }
}
.constellation__svg {
  display: block;
  width: 100%;
  height: auto;
}
.constellation__node {
  cursor: pointer;
}
.constellation__node-dot {
  fill: var(--demo-mark);
}
.constellation__node.is-active .constellation__node-dot {
  fill: var(--demo-accent);
}
.constellation__node-label {
  font-size: 9.5px;
  pointer-events: none;
  user-select: none;
  fill: var(--demo-ink-soft);
}
.constellation__node.is-active .constellation__node-label {
  fill: var(--demo-ink);
}
.constellation__node-icon {
  font-size: 7.5px;
  fill: var(--demo-mark-ink);
  pointer-events: none;
  user-select: none;
}
.constellation__node.is-active .constellation__node-icon {
  fill: #FFFFFF;
}
.constellation__ring {
  fill: none;
  stroke: var(--demo-accent);
  stroke-width: 1.5;
  pointer-events: none;
}
.constellation__edge {
  pointer-events: none;
}
.constellation__link {
  stroke: var(--demo-line);
  stroke-width: 1.6;
  stroke-linecap: round;
  opacity: 0;
  transition: stroke-dashoffset 1.1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.2s ease;
}
.constellation__edge.is-in .constellation__link {
  opacity: 0.85;
}
.constellation__arrow {
  fill: var(--demo-line);
  opacity: 0;
  transition: opacity 0.45s ease 0.7s;
}
.constellation__edge.is-in .constellation__arrow {
  opacity: 0.9;
}
@media (max-width: 600px) {
  .constellation__node-label {
    font-size: 11px;
  }
  .constellation__node-icon {
    font-size: 8.5px;
  }
}

.point-detail {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 6;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--demo-panel);
  border: 1px solid var(--demo-edge);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  animation: fadeIn 0.3s ease both;
}
.point-detail__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.point-detail__meta {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--demo-mark);
  font-weight: 500;
  margin: 0 0 6px;
}
.point-detail__title {
  font-size: 18px;
  font-weight: 400;
  color: var(--demo-ink);
  margin: 0;
}
.point-detail__close {
  cursor: pointer;
  color: var(--demo-ink-soft);
  font-size: 20px;
  line-height: 1;
  background: none;
  border: none;
  padding: 2px;
  transition: color 0.2s ease;
}
.point-detail__close:hover {
  color: var(--demo-ink);
}
.point-detail__links {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--demo-edge);
}
.point-detail__link {
  font-size: 13px;
  color: var(--demo-ink-soft);
  margin: 0 0 6px;
  line-height: 1.6;
}
.point-detail__link:last-child {
  margin-bottom: 0;
}
.point-detail__link strong {
  color: var(--demo-ink);
  font-weight: 500;
}
.point-detail__link span {
  color: var(--demo-mark);
}

.closing {
  text-align: center;
}
.closing__text {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 300;
  color: #1C1F23;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 28px;
  opacity: 0;
}
.is-visible .closing__text {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.05s;
}
.closing__coda {
  font-size: clamp(15px, 2.4vw, 17px);
  color: #6B7480;
  font-weight: 300;
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto 48px;
  opacity: 0;
}
.is-visible .closing__coda {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.22s;
}
.closing__coda span {
  display: block;
}
.closing__text strong {
  font-weight: 500;
}
.closing__call {
  font-size: clamp(20px, 3.4vw, 26px);
  font-weight: 400;
  color: #1C1F23;
  margin: 0 auto 34px;
  opacity: 0;
}
.is-visible .closing__call {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.34s;
}
.closing__mark {
  display: block;
  height: 20px;
  width: auto;
  margin: 0 auto;
  opacity: 0.75;
  opacity: 0;
}
.is-visible .closing__mark {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.46s;
}
.closing .button {
  opacity: 0;
}
.is-visible .closing .button {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.4s;
}

.cta {
  text-align: center;
}

.foot {
  padding: 48px 24px;
  border-top: 1px solid rgba(28, 31, 35, 0.09);
}
.foot__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.foot__brand {
  display: inline-flex;
  text-decoration: none;
}
.foot__logo {
  display: block;
  height: 22px;
  width: auto;
}
.foot__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.foot__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 24px;
}
.foot__link, .foot__mail {
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s ease;
}
.foot__link:hover, .foot__mail:hover {
  color: #1C1F23;
}
.foot__link {
  color: #9CA5B0;
}
.foot__mail {
  color: #9CA5B0;
}
@media (max-width: 600px) {
  .foot__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .foot__side {
    align-items: flex-start;
  }
  .foot__menu {
    justify-content: flex-start;
  }
}

.coda {
  text-align: center;
  font-size: clamp(15px, 2.3vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: #6B7480;
  max-width: 520px;
  margin: 52px auto 0;
  opacity: 0;
}
.is-visible .coda {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.34s;
}
.coda strong {
  color: #1C1F23;
  font-weight: 400;
}

.head {
  text-align: center;
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: #1C1F23;
  max-width: 560px;
  margin: 0 auto 52px;
  opacity: 0;
}
.is-visible .head {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.06s;
}
.head strong {
  font-weight: 500;
}

.who {
  max-width: 640px;
  margin: 0 auto;
}
.who__row {
  padding: 28px 2px;
  border-top: 1px solid rgba(28, 31, 35, 0.09);
  opacity: 0;
}
.who__row:last-child {
  border-bottom: 1px solid rgba(28, 31, 35, 0.09);
}
.is-visible .who__row {
  animation: rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.is-visible .who__row:nth-child(2) {
  animation-delay: 0.12s;
}
.is-visible .who__row:nth-child(3) {
  animation-delay: 0.24s;
}
.who__tag {
  font-weight: 500;
  color: #9CA5B0;
  margin: 0 0 10px;
}
.who__desc {
  font-size: clamp(15px, 2.2vw, 17px);
  font-weight: 300;
  line-height: 1.7;
  color: #6B7480;
  margin: 0;
}
.who__desc strong {
  color: #1C1F23;
  font-weight: 400;
}

.path {
  max-width: 600px;
  margin: 0 auto;
}
.path__step {
  display: flex;
  gap: 20px;
  opacity: 0;
}
.is-visible .path__step {
  animation: rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.is-visible .path__step:nth-child(2) {
  animation-delay: 0.12s;
}
.is-visible .path__step:nth-child(3) {
  animation-delay: 0.24s;
}
.is-visible .path__step:nth-child(4) {
  animation-delay: 0.36s;
}
.path__time {
  flex: 0 0 52px;
  text-align: right;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #9CA5B0;
  padding-top: 1px;
}
.path__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 12px;
}
.path__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #1C1F23;
  flex-shrink: 0;
  margin-top: 4px;
}
.path__dot--future {
  background: transparent;
  border: 1.5px solid #9CA5B0;
}
.path__line {
  flex: 1;
  width: 1px;
  background: rgba(28, 31, 35, 0.09);
  margin-top: 6px;
  min-height: 26px;
}
.path__step:last-child .path__line {
  display: none;
}
.path__body {
  flex: 1;
  padding-bottom: 40px;
}
.path__step:last-child .path__body {
  padding-bottom: 0;
}
.path__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9CA5B0;
  margin: 0 0 5px;
}
.path__moment {
  font-size: clamp(16px, 2.4vw, 19px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #1C1F23;
  margin: 0 0 5px;
}
.path__step--future .path__moment {
  color: #9CA5B0;
}
.path__detail {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #6B7480;
  margin: 0;
}
.path__step--future .path__detail {
  font-style: italic;
  color: #9CA5B0;
}

.voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .voices {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

.voice {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px 28px;
  border-radius: 22px;
  opacity: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #FFFFFF;
  border: 1px solid rgba(143, 196, 232, 0.4);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 20px 50px rgba(28, 31, 35, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.voice:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 66px rgba(143, 196, 232, 0.22);
}
.is-visible .voice {
  animation: rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.is-visible .voice:nth-child(2) {
  animation-delay: 0.13s;
}
.is-visible .voice:nth-child(3) {
  animation-delay: 0.26s;
}
.voice__quote {
  flex: 1;
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: #1C1F23;
  margin: 0;
}
.voice__who {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(143, 196, 232, 0.4);
  padding-top: 18px;
}
.voice__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #6B7480;
  background: #EAF4FB;
  border: 1px solid rgba(143, 196, 232, 0.4);
}
.voice__name {
  font-size: 13px;
  font-weight: 500;
  color: #1C1F23;
}
.voice__meta {
  font-size: 12px;
  color: #9CA5B0;
  margin-top: 1px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .trust {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}
.trust__card {
  padding: 38px 28px;
  border-radius: 22px;
  text-align: center;
  opacity: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #FFFFFF;
  border: 1px solid rgba(143, 196, 232, 0.4);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 20px 50px rgba(28, 31, 35, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.trust__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 66px rgba(143, 196, 232, 0.22);
}
.is-visible .trust__card {
  animation: rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.is-visible .trust__card:nth-child(2) {
  animation-delay: 0.13s;
}
.is-visible .trust__card:nth-child(3) {
  animation-delay: 0.26s;
}
.trust__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8FC4E8;
  background: #EAF4FB;
  border: 1px solid rgba(143, 196, 232, 0.4);
}
.trust__icon svg {
  width: 20px;
  height: 20px;
}
.trust__title {
  font-size: 16px;
  font-weight: 500;
  color: #1C1F23;
  margin: 0 0 8px;
}
.trust__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: #6B7480;
  margin: 0;
}

.about-teaser {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .about-teaser {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 460px;
    text-align: center;
  }
  .about-teaser .author {
    justify-content: center;
  }
  .about-teaser .author__links {
    justify-content: center;
  }
}
.about-teaser .author {
  margin-top: 26px;
}
.about-teaser__gallery {
  opacity: 0;
}
.is-visible .about-teaser__gallery {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.06s;
}
@media (max-width: 900px) {
  .about-teaser__gallery {
    max-width: 320px;
    margin: 0 auto;
  }
}
.about-teaser__body {
  opacity: 0;
}
.is-visible .about-teaser__body {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.16s;
}
.about-teaser__desc {
  font-size: clamp(14px, 2.1vw, 16px);
  font-weight: 300;
  line-height: 1.8;
  color: #6B7480;
  margin: 0 0 26px;
}

.gallery-mini {
  display: grid;
  grid-template-columns: 1fr;
}
.gallery-mini__viewport {
  grid-area: 1/1;
  display: flex;
  aspect-ratio: 4/5;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: 22px;
  border: 1px solid rgba(143, 196, 232, 0.4);
  background: #EAF4FB;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-mini__viewport::-webkit-scrollbar {
  display: none;
}
.gallery-mini__slide {
  flex: 0 0 100%;
  margin: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.gallery-mini__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-mini__arrow {
  grid-area: 1/1;
  align-self: center;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(28, 31, 35, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.25s ease, opacity 0.25s ease;
}
.gallery-mini__arrow:hover {
  background: rgba(28, 31, 35, 0.62);
}
.gallery-mini__arrow:disabled {
  opacity: 0;
  pointer-events: none;
}
.gallery-mini__arrow--prev {
  justify-self: start;
  margin-left: 10px;
}
.gallery-mini__arrow--next {
  justify-self: end;
  margin-right: 10px;
}
.gallery-mini__arrow svg {
  width: 15px;
  height: 15px;
}
.gallery-mini__dots {
  grid-area: 2/1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}
.gallery-mini__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(143, 196, 232, 0.4);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.gallery-mini__dot.is-on {
  background: #8FC4E8;
  transform: scale(1.35);
}

.author {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(28, 31, 35, 0.09);
  opacity: 0;
}
.is-visible .author {
  animation: rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.1s;
}
.author__name {
  font-size: 17px;
  font-weight: 400;
  color: #1C1F23;
  margin: 0 0 10px;
}
.author__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.author__link {
  font-size: 13px;
  color: #6B7480;
  text-decoration: none;
  transition: color 0.25s ease;
}
.author__link:hover {
  color: #1C1F23;
}

.launch {
  max-width: 300px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 22px;
  text-align: center;
  opacity: 0;
  background: #FFFFFF;
  border: 1px solid rgba(143, 196, 232, 0.4);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 20px 50px rgba(28, 31, 35, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.is-visible .launch {
  animation: rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.12s;
}
.launch__when {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 0 22px;
}
.launch__quarter {
  font-size: 16px;
  font-weight: 500;
  color: #9CA5B0;
}
.launch__year {
  font-size: clamp(46px, 9vw, 66px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #1C1F23;
}
.launch__desc {
  font-size: clamp(14px, 2.1vw, 16px);
  font-weight: 300;
  line-height: 1.75;
  color: #6B7480;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(28, 31, 35, 0.09);
}
.launch__desc strong {
  color: #1C1F23;
  font-weight: 400;
}

.faq {
  max-width: 640px;
  margin: 0 auto;
}
.faq__item {
  border-top: 1px solid rgba(28, 31, 35, 0.09);
  opacity: 0;
}
.faq__item:last-child {
  border-bottom: 1px solid rgba(28, 31, 35, 0.09);
}
.is-visible .faq__item {
  animation: rise 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.is-visible .faq__item:nth-child(2) {
  animation-delay: 0.1s;
}
.is-visible .faq__item:nth-child(3) {
  animation-delay: 0.2s;
}
.is-visible .faq__item:nth-child(4) {
  animation-delay: 0.3s;
}
.is-visible .faq__item:nth-child(5) {
  animation-delay: 0.4s;
}
.is-visible .faq__item:nth-child(6) {
  animation-delay: 0.5s;
}
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 2px;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 400;
  line-height: 1.4;
  color: #1C1F23;
  transition: color 0.3s ease;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q:hover {
  color: #6B7480;
}
.faq__mark {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.faq__mark::before, .faq__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #6B7480;
}
.faq__mark::before {
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq__mark::after {
  width: 1.5px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__mark {
  transform: rotate(45deg);
}
.faq__a {
  padding: 0 2px 26px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #6B7480;
  max-width: 560px;
}
.faq__a p {
  margin: 0;
}
.faq__item[open] .faq__a {
  animation: rise 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .section,
  .section.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
  .say__lead, .say__body,
  .signs__item,
  .story__photo, .story__beat,
  .moments__list span, .moments__note,
  .step, .not,
  .head, .who__row, .path__step, .voice, .trust__card,
  .idea__big, .idea__icons, .idea__small,
  .faq__item, .launch,
  .about-teaser__gallery, .about-teaser__body, .author,
  .demo__sub, .demo__legend, .demo__caption, .demo__note, .constellation,
  .say__turn, .say__list, .coda,
  .closing__text, .closing__coda, .closing__call, .closing__mark,
  .closing .button {
    opacity: 1 !important;
    translate: none !important;
    transform: none !important;
  }
}

/*# sourceMappingURL=main.css.map */
