.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.mode-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.14);
  color: #c2410c;
  border: 1px solid rgba(249, 115, 22, 0.28);
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.mode-badge:empty {
  display: none;
}

.form-status {
  font-size: 0.9rem;
  color: var(--muted);
}

.no-scroll {
  overflow: hidden;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.has-reveal .reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.99);
  filter: blur(4px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.has-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.has-reveal .feature-grid .reveal:nth-child(1),
.has-reveal .steps-grid .reveal:nth-child(1),
.has-reveal .plans-grid .reveal:nth-child(1),
.has-reveal .objectives-grid .reveal:nth-child(1) {
  transition-delay: 0.04s;
}

.has-reveal .feature-grid .reveal:nth-child(2),
.has-reveal .steps-grid .reveal:nth-child(2),
.has-reveal .plans-grid .reveal:nth-child(2),
.has-reveal .objectives-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.has-reveal .feature-grid .reveal:nth-child(3),
.has-reveal .steps-grid .reveal:nth-child(3),
.has-reveal .plans-grid .reveal:nth-child(3),
.has-reveal .objectives-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
