.support {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(6vh + 32px) 48px 80px;
}

.support__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-accent);
  margin-bottom: 28px;
  animation: support-title-ignite 1s var(--ease-out) both;
}

@keyframes support-title-ignite {
  0% {
    opacity: 0;
    filter: blur(16px);
    transform: translateY(10px);
    text-shadow: 0 0 0 rgba(253, 233, 204, 0);
  }
  60% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
  100% {
    text-shadow: 0 0 44px rgba(253, 233, 204, 0.45);
  }
}

.support__intro {
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  animation: support-line-reveal 0.8s var(--ease-out) 0.3s both;
}

.support__intro strong {
  color: var(--color-accent);
  font-weight: 700;
}

@keyframes support-line-reveal {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.support__mines-link {
  display: inline-flex;
  margin-bottom: 56px;
  border-radius: 10px;
  animation: support-line-reveal 0.8s var(--ease-out) 0.5s both;
}

.support__mines-logo {
  height: 64px;
  width: auto;
  transition: transform 0.4s var(--ease-spring), filter 0.3s ease;
}

.support__mines-link:hover .support__mines-logo,
.support__mines-link:focus-visible .support__mines-logo {
  transform: scale(1.12) translateY(-4px);
  filter: drop-shadow(0 0 26px rgba(253, 233, 204, 0.55));
}

.support__mines-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 6px;
}

.support__direct-intro {
  max-width: 560px;
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  animation: support-line-reveal 0.8s var(--ease-out) 0.65s both;
}

.support__options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 760px;
}

/* Entrance animation only touches opacity/filter, never transform — the
   hover lift below needs transform to stay fully controlled by a plain
   transition. An animation with fill-mode:both keeps "owning" whatever
   properties it touches even after it ends, which would otherwise sit
   above the :hover rule in the cascade and silently block it. */
.support-option {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 28px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  opacity: 0;
  animation: support-card-fade 0.7s var(--ease-out) both;
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s var(--ease-spring);
}

.support__options .support-option:nth-child(1) {
  animation-delay: 0.8s;
}

.support__options .support-option:nth-child(2) {
  animation-delay: 0.9s;
}

@keyframes support-card-fade {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.support-option:hover {
  border-color: rgba(253, 233, 204, 0.3);
  background-color: rgba(255, 255, 255, 0.045);
  transform: translateY(-4px);
}

.support-option:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.support-option__icon {
  font-size: 1.6rem;
  color: var(--color-accent);
  margin-bottom: 16px;
  transition: transform 0.3s var(--ease-spring);
}

.support-option:hover .support-option__icon {
  transform: scale(1.15);
}

.support-option__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 10px;
}

.support-option__desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

@media (prefers-reduced-motion: reduce) {
  .support__title,
  .support__intro,
  .support__mines-link,
  .support__direct-intro,
  .support-option {
    animation: none;
    opacity: 1;
  }

  .support__title {
    text-shadow: 0 0 44px rgba(253, 233, 204, 0.45);
  }

  .support__mines-logo,
  .support-option,
  .support-option__icon {
    transition: none;
  }
}

@media (max-width: 640px) {
  .support {
    padding: 72px 20px 60px;
  }

  .support-option {
    flex: 1 1 100%;
  }
}
