.boxes-container {
  display: flex;
  flex-direction: column; /* default: stacked for mobile */
  gap: 16px;
  margin-bottom: 30px;
}

.box-anim {
  background-color: lightblue;
  border-radius: var(--curve);
  box-shadow: var(--shadow);
  flex: 1; /* equal */
  opacity: 0;
  padding: 20px;
  text-align: center;
  transform: translateY(12px);
  visibility: hidden;
}

/* ----------- Desktop ----------- */

@media (min-width: 768px) {
  .boxes-container {
    flex-direction: row; /* side-by-side */
  }
}

/* Whenever/Wherever */

.line-anim {
  align-items: baseline;
  display: inline-flex;
  gap: 0.35ch;
  line-height: 24px;
}

.slot-anim {
  display: inline-block;
  height: 24px; /* match */
  overflow: visible hidden;
  vertical-align: baseline;
}

.track-anim {
  display: flex;
  flex-direction: column;
}

.w-anim {
  align-items: center;
  display: flex;
  height: 24px; /* match */
  justify-content: center;
  line-height: normal;
  white-space: nowrap;
}

/* Coming Soon */

.coming-soon {
  width: 100%;
  text-align: center;
  margin-top: var(--space-4xl);
}

.cs-title {
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: cs-fade-in 1.2s ease forwards;
}

.cs-line {
  width: 0;
  height: 1px;
  background: #3a3a3a;
  margin: 1.5rem auto;
  animation: grow 1s 0.6s ease forwards;
}

.cs-sub {
  font-family: "DM Mono", monospace;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #555555;
  opacity: 0;
  animation: cs-fade-in 1s 1.2s ease forwards;
}

@keyframes cs-fade-in {
  to {
    opacity: 1;
  }
}

@keyframes grow {
  to {
    width: 80px;
  }
}
