:root {
  --resource-accent: #16a34a;
}

html {
  scroll-behavior: smooth;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(24, 24, 27, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #18181b;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  filter: brightness(0.98);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.10);
  transform: translateY(-1px);
}

.button.primary {
  border-color: transparent;
  background: var(--resource-accent);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.24);
}

.button.dark {
  border-color: transparent;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.18);
}

.content a:not(.button):not(.quick-card) {
  color: #4f46e5;
  font-weight: 800;
}

@media (max-width: 720px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-box .button {
    width: 100%;
  }
}
