@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background: #000;
  color: #fff;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main {
  background: #000;
}

section {
  min-height: 100vh;
}

.brand-section,
.loop-section,
.phrase-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 10vh 6vw;
}

.brand-title {
  position: relative;
  z-index: 5;
  font-family: "Inter Tight", sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-align: center;
  color: #fff;
}

.brand-title > span {
  display: inline-block;
  overflow: hidden;
  padding: 0.05em 0.08em;
}

.brand-title > span > span {
  display: inline-block;
  transform: translateY(110%);
}

.loop-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.daleloop-o {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(190px, 48vmin, 520px);
  height: clamp(190px, 48vmin, 520px);
  border-radius: 50%;
  background-color: #000;
}

.daleloop-o-inner {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: inset 1.2vmin 0.6vmin 1px #ebebeb;
  transform: rotate(8deg) scale(1);
  animation: bounceScale 4s infinite ease-in-out;
  will-change: transform;
}

@keyframes bounceScale {
  0%, 100% { transform: rotate(8deg) scale(1); }
  25% { transform: rotate(8deg) scale(1.2, 1.4); }
  50% { transform: rotate(8deg) scale(0.8, 1.3); }
  75% { transform: rotate(8deg) scale(1.15, 1.15); }
}

.phrase {
  max-width: 1200px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 10vw, 170px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-align: center;
  color: #fff;
}

@media (max-width: 640px) {
  .brand-section,
  .loop-section,
  .phrase-section {
    padding: 8vh 5vw;
  }

  .brand-title {
    font-size: clamp(56px, 18vw, 110px);
  }

  .daleloop-o {
    width: 64vmin;
    height: 64vmin;
  }

  .daleloop-o-inner {
    animation-name: bounceMobile;
  }

  .phrase {
    font-size: clamp(44px, 14vw, 90px);
  }

  @keyframes bounceMobile {
    0%, 100% { transform: rotate(8deg) scale(1); }
    50% { transform: rotate(8deg) scale(1.25); }
  }
}