.animation-wrapper {
  min-height: 100svh;
}

.animation-wrapper lottie-player {
  display: block;
  min-height: 100svh;
}

.startscreen-backgroundheader {
  display: none;
}

.chips-section {
  position: relative;
  min-height: 220svh;
  background: #44C8F5;
  color: #fff;
}

.chips-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
}

.start-projects-section {
  background: linear-gradient(160deg, #44C8F5 0%, #44C8F5 48%, #63DBFC 100%);
  padding-top: 12svh;
}

.start-about-section {
  background: linear-gradient(340deg, #44C8F5 0%, #44C8F5 48%, #63DBFC 100%);
}

.start-about-section .border-btn {
  margin-top: 32px;
}

.chips-mobile-trigger {
  display: none;
}

.about-stage-animation {
  display: block;
  width: 70%;
  min-height: 300px;
  margin: 0 auto;
}

.chips-stage {
  position: absolute;
  inset: 0;
  min-height: 100svh;
  overflow: hidden;
  pointer-events: none;
  touch-action: pan-y;
  z-index: 10;
}

.chips-content-panel {
  position: relative;
  z-index: 5;
  width: 100%;
  min-height: 64svh;
  padding: 14svh 0 40px;
  pointer-events: none;
}

.chips-content-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(12, 5%);
  grid-column-gap: 1.818181%;
  grid-row-gap: 32px;
  align-items: center;
  margin-left: 10%;
  margin-right: 10%;
}

.chips-content-text {
  grid-column-start: 1;
  grid-column-end: 5;
}

.chips-content-media {
  grid-column-start: 6;
  grid-column-end: 13;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 10;
}

.chips-content-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chips-content-panel a,
.chips-content-panel button {
  pointer-events: auto;
}

.chips-floor {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background: transparent;
  pointer-events: none;
}

.chip {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  padding: 18px 31px;
  border: 0;
  border-radius: 999px;
  background: var(--chip-color, #44C8F5);
  color: #fff;
  font-family: faricy-new-web, Arial, Helvetica, sans-serif;
  font-size: clamp(1.45rem, 2.35vw, 2.18rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01rem;
  white-space: nowrap;
  cursor: grab;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: none;
  will-change: transform;
  transform: translate3d(0,0,0);
}

.chip:nth-child(1) {
  --chip-color: #cb91b6;
}

.chip:nth-child(2) {
  --chip-color: #5478e3;
}

.chip:nth-child(3) {
  --chip-color: #e88584;
}

.chip:nth-child(4) {
  --chip-color: #885fb1;
}

.chip:nth-child(5) {
  --chip-color: #2ca480;
}

.chip:nth-child(6) {
  --chip-color: #ed9767;
}

.chip:nth-child(7) {
  --chip-color: #6fce73;
}

.chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #3c3c3b;
  opacity: 0;
  z-index: -1;
  transition: opacity 160ms ease, transform 160ms ease;
  transform: scale(0.96);
}

@media (hover: hover) and (pointer: fine) {
  .chip:hover {
    color: #fff;
  }

  .chip:hover::before {
    opacity: 1;
    transform: scale(1);
  }
}

.chip:active {
  cursor: grabbing;
}

.chip.is-selected {
  background: #fff;
  color: var(--chip-color, #44C8F5);
}

.chip.is-selected::before {
  opacity: 0;
}

.chip.is-dragging {
  z-index: 9999;
}

.chips-eyebrow {
  font-family: faricy-new-web, Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  line-height: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-weight: 300;
  color: #fff;
  margin: 0;
}

.chips-content-panel h1 {
  margin: 8px 0 12px;
  font-family: faricy-new-web, Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.3rem;
  color: #fff;
}

.chips-content-panel #chipsContentText {
  max-width: 55ch;
  font-family: faricy-new-web, Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8rem;
  color: #fff;
  margin: 0;
}

.chips-content-link {
  display: inline-block;
  margin-top: 28px;
  font-family: faricy-new-web, Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.8rem;
  letter-spacing: 0.3px;
  color: #fff;
  text-decoration: none;
}

.chips-content-link span {
  color: #fff;
}

.chips-content-link:hover {
  opacity: 0.8;
}

@media (max-width: 760px) {
  .chips-mobile-trigger {
    display: block;
    height: 1px;
    margin-bottom: -1px;
  }

  .chips-section {
    min-height: 92svh;
  }

  .chips-sticky {
    min-height: 92svh;
  }

  .chips-stage {
    min-height: 92svh;
  }

  .chips-content-panel {
    min-height: auto;
    width: 100%;
    padding: 18px 0 24px;
  }

  .chips-content-grid {
    grid-template-columns: repeat(12, 5%);
    grid-column-gap: 2.727272%;
    grid-row-gap: 16px;
    align-items: start;
    margin-left: 5%;
    margin-right: 5%;
  }

  .chips-content-text,
  .chips-content-media {
    grid-column-start: 1;
    grid-column-end: 13;
  }

  .chips-content-media {
    aspect-ratio: 4 / 3;
    max-height: 34svh;
  }

  .chips-content-media img {
    object-fit: contain;
  }

  .chips-content-panel h1 {
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: 700;
    margin: 4px 0 8px;
  }

  .chips-eyebrow,
  .chips-content-panel #chipsContentText,
  .chips-content-link {
    font-size: 1rem;
    line-height: 1.45rem;
  }

  .chips-content-link {
    margin-top: 16px;
  }

  .about-stage-animation {
    width: 70%;
    min-height: 180px;
  }

  .chips-floor {
    left: 12px;
    right: 12px;
  }

  .chip {
    padding: 10px 15px;
    font-size: clamp(0.9rem, 4.4vw, 1.18rem);
  }
}
