@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: #ffffff;
  color: #111827;
  overflow-x: hidden;
}

.move-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.moving-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.moving-bg span {
  position: absolute;
  width: 52vw;
  height: 115vh;
  top: -8vh;
  right: -19vw;
  background: #111827;
  border-radius: 58px;
  transform: rotate(12deg);
  animation: coverMove 8s ease-in-out infinite alternate;
}

.moving-bg span:nth-child(2) {
  right: 9vw;
  width: 16vw;
  background: rgba(17, 24, 39, 0.08);
  animation-delay: 0.6s;
}

.moving-bg span:nth-child(3) {
  right: 28vw;
  width: 7vw;
  background: rgba(17, 24, 39, 0.05);
  animation-delay: 1.2s;
}

.content-wrap {
  min-height: 100vh;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.left-content {
  max-width: 1040px;
  padding-left: 3rem;
  animation: textReveal 1.1s ease forwards;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111827;
}

h1 {
  color: #111827;
  font-weight: 800;
  letter-spacing: -0.075em;
}

.old-name {
  display: block;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.92;
  white-space: nowrap;
}

h1 small {
  display: block;
  margin: 1rem 0 0.9rem;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
  color: #111827;
}

.new-name {
  display: block;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.desc {
  max-width: 650px;
  margin-top: 1.6rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #111827;
}

.main-btn {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.7rem;
  border-radius: 0;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  margin-bottom: 0.5cm;
}
.main.link{
  text-decoration: none;
}
.main-btn::after {
  content: "→";
  margin-left: 0.8rem;
  transition: 0.3s ease;
}

.main-btn:hover {
  transform: translateY(-3px);
}

.main-btn:hover::after {
  transform: translateX(8px);
}

.right-cover {
  width: min(100%, 440px);
  height: 460px;
  justify-self: center;
  border-radius: 34px;
  background: #111827;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-box {
  width: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 30px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.1rem;
  animation: logoMove 4s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@keyframes coverMove {
  from {
    transform: translateX(70px) rotate(12deg);
  }

  to {
    transform: translateX(-70px) rotate(12deg);
  }
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes logoMove {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-14px) scale(1.03);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .content-wrap {
    grid-template-columns: 1fr 0.65fr;
  }

  .left-content {
    padding-left: 1.5rem;
  }

  .new-name {
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  }

  .right-cover {
    width: 380px;
    height: 420px;
  }

  .logo-box {
    width: 260px;
  }
}

@media (max-width: 900px) {
  .content-wrap {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }

  .left-content {
    padding: 2rem 1rem;
  }

  .old-name,
  .new-name {
    white-space: normal;
  }

  .old-name {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .new-name {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .right-cover {
    width: 100%;
    height: 300px;
    min-height: 300px;
    margin-top: 1rem;
    border-radius: 26px;
  }

  .logo-box {
    width: 210px;
    border-radius: 24px;
    padding: 1.4rem;
  }

  .moving-bg span {
    width: 90vw;
    right: -60vw;
  }
}