*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  color: #1f1f1f;
  background-color: #f9f6f1;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  background: radial-gradient(circle at top left, #ff8f70, #ff5668 45%, #5433ff);
  color: #fffefa;
  padding: clamp(4rem, 8vw, 6rem) 1.5rem;
}

.hero__content {
  max-width: 960px;
  margin: 0 auto;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin: 0 0 0.75rem;
  opacity: 0.8;
}

.hero h1 {
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.hero__lead {
  font-size: clamp(1.15rem, 2.3vw, 1.35rem);
  max-width: 48ch;
  margin: 0 0 2rem;
  opacity: 0.95;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button--primary {
  background-color: #fffefa;
  color: #24113c;
  box-shadow: 0 0.55rem 1.25rem rgba(24, 9, 47, 0.25);
}

.button--secondary {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fffefa;
}

.button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.65rem 1.6rem rgba(24, 9, 47, 0.3);
}

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
}

.section__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 720px;
}

.section--about {
  background-color: #fffdfa;
}

.section__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1.65rem;
  font-size: 1.05rem;
}

.section--tools {
  background-color: #f5ede2;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.card {
  background-color: #fffdfa;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 16px 40px rgba(31, 20, 57, 0.08);
  position: relative;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.card p {
  margin: 0 0 1.5rem;
  color: #4c3a57;
}

.card__link {
  font-weight: 600;
  color: #3b2575;
}

.card__link:hover {
  text-decoration: underline;
}

.card__badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background-color: #e6daff;
  color: #3b2575;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.section--initiatives {
  background-color: #fffdfa;
}

.goals {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}

.goals li {
  padding-left: 2.25rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.55;
}

.goals li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8f70, #5433ff);
  position: absolute;
  left: 0.75rem;
  top: 0.55rem;
}

.footer {
  background-color: #1d1630;
  color: rgba(255, 255, 255, 0.82);
  padding: 2.5rem 1.5rem 3rem;
}

.footer a {
  color: #ff8f70;
}

.footer__inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.footer__note {
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
