/* Page-specific styles for index.html (coming soon) */

#app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.splash-stage {
  position: relative;
  width: 148px;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 4px;
}

.splash-sq {
  border-radius: 2px;
  background: var(--amber);
  opacity: 0;
  transform: scale(.3);
  animation: sqIn .55s ease forwards;
}

@keyframes sqIn { to { opacity: .18; transform: scale(1); } }

.brewing {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--dim);
}

.brewing-dots {
  display: inline-block;
  width: 1.2em;
  text-align: left;
}
