.section-cta {
  width: 100%;
  margin-top: clamp(32px, 4vw, 52px);
  display: flex;
  justify-content: center;
}

.manifesto .section-cta,
.included .section-cta {
  justify-content: flex-end;
}

.community-cta {
  grid-column: 1 / -1;
}

.faq-cta {
  justify-content: flex-start;
  margin-top: 30px;
}

.definition-copy > .button,
.roots-copy > .button {
  align-self: flex-start;
  margin-top: 28px;
}

.button-mystic {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 270px;
  color: #061006;
  border-color: #73ff60;
  background: linear-gradient(135deg, #86ff73 0%, #53e841 52%, #72ff5e 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.35), 0 0 24px rgba(99, 255, 79, 0.2), 0 13px 34px rgba(0, 0, 0, 0.3);
}

.button-mystic::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(99, 255, 79, 0.2) 48%, transparent 75%);
  transform: translateX(-125%);
  transition: transform 0.7s cubic-bezier(.2, .7, .2, 1);
}

.button-mystic::after {
  content: '';
  position: absolute;
  z-index: -2;
  width: 80px;
  height: 80px;
  right: -55px;
  border-radius: 50%;
  background: rgba(99, 255, 79, 0.2);
  filter: blur(22px);
  transition: transform 0.4s, opacity 0.4s;
}

.button-mystic span {
  color: #061006;
  font-size: 17px;
  transition: transform 0.3s, color 0.3s;
}

.button-mystic:hover {
  color: #061006;
  background: linear-gradient(135deg, #a2ff94, #69ff56);
  border-color: var(--gold);
  box-shadow: 0 0 36px rgba(99, 255, 79, 0.22), 0 14px 34px rgba(0, 0, 0, 0.28);
}

.button-mystic:active {
  transform: translateY(0) scale(0.985);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.16), 0 0 22px rgba(99, 255, 79, 0.2);
}

.button-mystic:hover::before {
  transform: translateX(125%);
}

.button-mystic:hover::after {
  transform: scale(1.8);
  opacity: 0.55;
}

.button-mystic:hover span {
  color: #061006;
  transform: translate(2px, -2px);
}

.button-mystic:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 800px) {
  .section-cta,
  .manifesto .section-cta,
  .included .section-cta,
  .faq-cta {
    margin-top: 30px;
    justify-content: stretch;
  }

  .button-mystic,
  .definition-copy > .button,
  .roots-copy > .button {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button-mystic::before,
  .button-mystic::after,
  .button-mystic span {
    transition: none;
  }
}
