* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: #e9e9e9;
}

body {
  overflow-x: hidden;
}

.about-image-page {
  width: 100%;
  margin: 0;
  padding: 0;
}

.about-image-page img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.contact-playground {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 6;
  background: #fff;
  color: #000;
  cursor: default;
}

.contact-playground__stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.contact-playground__canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
}

.contact-playground__copy {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 43.5%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.contact-playground__copy p {
  margin: 0;
  overflow: hidden;
  font: 400 clamp(14px, 1vw, 32px) / 1.4 "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

.contact-playground__copy h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  font: 400 7.8vw / 0.9 "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.065em;
  text-align: center;
}

.contact-playground__crosses {
  --cross-size: clamp(12px, 1.25vw, 24px);
  position: absolute;
  left: 20vw;
  top: 0;
  width: 60vw;
  height: calc(100% + 10vh);
}

.contact-playground__crosses i {
  position: absolute;
  width: var(--cross-size);
  height: var(--cross-size);
}

.contact-playground__crosses i::before,
.contact-playground__crosses i::after {
  position: absolute;
  left: 0;
  top: calc(50% - var(--cross-size) * 0.0625);
  width: 100%;
  height: calc(var(--cross-size) * 0.125);
  content: "";
  background: #fff;
}

.contact-playground__crosses i::after {
  transform: rotate(90deg);
}

.contact-playground__crosses i:nth-child(1) {
  left: 0;
  top: 0;
}

.contact-playground__crosses i:nth-child(2) {
  right: 0;
  top: 0;
}

.contact-playground__crosses i:nth-child(3) {
  left: 0;
  bottom: 0;
}

.contact-playground__crosses i:nth-child(4) {
  left: calc(50% - 0.5rem);
  bottom: 0;
}

.contact-playground__crosses i:nth-child(5) {
  right: 0;
  bottom: 0;
}

.contact-playground__line {
  position: absolute;
  display: block;
  height: 0.07em;
  background: #fff;
  transform-origin: left;
}

.contact-playground__line--top {
  left: 0.05em;
  top: 0.85em;
  width: calc(100% - 0.05em);
}

.contact-playground__line--left {
  left: 0.25em;
  bottom: 0.1em;
  width: 0.82em;
}

.contact-playground__line--right {
  left: 1.78em;
  bottom: 0.1em;
  width: 2.45em;
}

.contact-playground__hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: max(
    calc(var(--contact-vh, 1vh) * 7),
    calc(env(safe-area-inset-bottom, 0px) + 16px)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 15em;
  height: 3.375em;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  transform: translateX(-50%);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.04);
  font: 400 clamp(10.5px, 0.75vw, 14px) / 1.5 "Helvetica Neue", Arial, sans-serif;
  white-space: nowrap;
  pointer-events: none;
}

.contact-playground__arrow {
  display: block;
  font-size: 1.25em;
  animation: contact-arrow 3s cubic-bezier(0.1, 0, 0.1, 1) infinite;
}

@keyframes contact-arrow {
  0%,
  18%,
  100% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(0.35em);
  }
}

@media (max-width: 700px) {
  .contact-playground__copy {
    top: 43.5%;
  }

  .contact-playground__copy p {
    width: 55%;
    margin: 0 auto;
    font-size: 1.05rem;
  }

  .contact-playground__copy h2 {
    width: 100%;
    font-size: min(9.2vw, 54px);
    line-height: 0.9;
  }

  .contact-playground__crosses {
    left: 16px;
    width: calc(100% - 32px);
  }

  .contact-playground__line--top {
    left: 0.35em;
    width: calc(100% - 0.65em);
  }

  .contact-playground__line--left {
    left: 0.55em;
  }

  .contact-playground__line--right {
    left: 2.1em;
  }
}

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