.augmenta-prompt-spark {
  --aps-ink: #20312e;
  --aps-muted: #63736f;
  --aps-white: #fffefa;
  --aps-teal: #0d6e68;
  --aps-teal-deep: #084d4a;
  --aps-amber: #b87836;
  --aps-line: #dce1dc;
  --aps-shadow: 0 18px 50px rgba(24, 54, 50, 0.08);
  color: var(--aps-ink);
  background: #eef3ef;
  padding: clamp(28px, 5vw, 64px);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
}

.augmenta-prompt-spark *,
.augmenta-prompt-spark *::before,
.augmenta-prompt-spark *::after {
  box-sizing: border-box;
}

.aps-heading {
  max-width: 920px;
  margin: 0 auto 28px;
  text-align: center;
}

.aps-eyebrow {
  margin: 0 0 12px;
  color: var(--aps-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.aps-heading h2 {
  margin: 0;
  color: var(--aps-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.aps-heading p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--aps-muted);
  font-size: 17px;
}

.aps-board {
  min-height: 300px;
  display: grid;
  place-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  text-align: center;
  background: var(--aps-white);
  border: 1px solid var(--aps-line);
  box-shadow: var(--aps-shadow);
}

.aps-sequence {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.aps-token {
  width: 106px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 62px;
  background: #fff8ec;
  border: 1px solid #eadfc9;
  box-shadow: 0 10px 28px rgba(32, 49, 46, .08);
}

.aps-token-newest {
  animation: aps-pop-in .28s ease;
}

.aps-prompt {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--aps-teal-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.18;
}

.aps-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px auto;
}

.aps-button {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  color: var(--aps-teal);
  background: transparent;
  border: 1px solid var(--aps-teal);
  border-radius: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.aps-button:hover,
.aps-button:focus-visible {
  background: #e5efec;
  outline: none;
  transform: translateY(-1px);
}

.aps-button-primary {
  color: #fff;
  background: var(--aps-teal);
}

.aps-button-primary:hover,
.aps-button-primary:focus-visible {
  color: #fff;
  background: var(--aps-teal-deep);
}

.aps-activities {
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 24px auto 0;
  background: var(--aps-white);
  border-top: 1px solid var(--aps-line);
  border-left: 1px solid var(--aps-line);
}

.aps-activities article {
  min-height: 165px;
  padding: 20px;
  border-right: 1px solid var(--aps-line);
  border-bottom: 1px solid var(--aps-line);
}

.aps-activities span {
  color: var(--aps-amber);
  font-size: 11px;
  font-weight: 700;
}

.aps-activities h3 {
  margin: 22px 0 0;
  color: var(--aps-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.08;
}

.aps-activities p {
  margin: 10px 0 0;
  color: var(--aps-muted);
  font-size: 13px;
}

@keyframes aps-pop-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 760px) {
  .augmenta-prompt-spark {
    padding: 28px 18px;
  }

  .aps-board {
    min-height: 260px;
  }

  .aps-token {
    width: 76px;
    font-size: 45px;
  }

  .aps-activities {
    grid-template-columns: 1fr;
  }

  .aps-button {
    width: 100%;
  }
}
