html,
body {
  background: #fafaf7;
  margin: 0;
}
#root {
  min-height: 100vh;
}
#app-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafaf7;
  transition: opacity 0.28s ease-out;
  overflow: hidden;
}
#app-splash.app-splash--hidden {
  display: none;
}
#app-splash.app-splash--hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.app-splash__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  padding: 1.5rem;
}
.app-splash__logo-wrap {
  position: relative;
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-splash__orbit {
  position: absolute;
  inset: 0;
  animation: app-splash-spin 14s linear infinite;
}
.app-splash__petal {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--angle)) translateY(-46px);
}
.app-splash__petal svg {
  display: block;
  margin: -9px 0 0 -6px;
}
.app-splash__logo {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  object-fit: contain;
  animation: app-splash-in 0.45s ease-out both;
}
.app-splash__content p {
  margin: 0;
  font-family: 'Sacramento', 'Brush Script MT', cursive;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  color: #b8860b;
  animation: app-splash-in 0.4s ease-out 0.2s both;
}
@keyframes app-splash-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes app-splash-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .app-splash__orbit {
    animation: none;
  }
  .app-splash__logo,
  .app-splash__content p {
    animation: none;
    opacity: 1;
  }
}
