@charset "UTF-8";
body {
  /* Super cool chill modern font */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #001;
  margin: 0;
  padding: 0;
}

main {
  line-height: 2;
  margin: 0;
  padding: 0;
}

section {
  padding: 4rem 2rem;
  margin: 0;
}

p {
  margin-top: 2em;
}

li {
  margin-top: 0.5em;
}

a {
  color: cyan;
} /* Unvisited link  */
a:visited {
  color: cyan;
} /* Visited link    */
a:hover {
  color: cyan;
} /* Mouse over link */
a:active {
  color: cyan;
} /* Selected link   */
/* FAQ / accordion styling */
.faq {
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 800px;
}

/* Each faq item */
.faq-item {
  border-color: #e5e7eb; /* light gray */
  padding: 0.75rem 0;
}

/* Button acts as header */
.faq-item > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: background-color 160ms ease, box-shadow 160ms ease;
  border-radius: 6px;
}

/* Hover and focus affordances */
.faq-item > button:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.faq-item > button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(33, 197, 192, 0.12);
}

/* Question text */
.faq-item > button > span:first-child {
  flex: 1 1 auto;
  text-align: left;
  color: #111827; /* dark gray */
  font-weight: 600;
  font-size: 1.06rem;
}

/* Toggle symbol (+ / −) */
.faq-item > button > span:last-child {
  flex: 0 0 1.8rem;
  text-align: center;
  color: #6b7280; /* gray */
  font-weight: 700;
  margin-left: 0.75rem;
  font-size: 1.2rem;
}

/* Answer paragraph styling */
.faq-item p {
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: #4b5563; /* medium gray */
  line-height: 1.45;
  padding-right: 0.5rem;
  font-size: 0.975rem;
  animation: faqFadeIn 180ms ease both;
}

/* Small fade/slide animation for answers */
@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Optional small separator tweak */
.faq-item + .faq-item {
  margin-top: 0.25rem;
}

/* Section fade-in animation (used by all .section-* variants) */
@keyframes sectionFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Common initial state for all section variants (hidden until in-view) */
.section-dark,
.section-light,
.section-periwinkle,
.section-muave,
.section-emerald {
  opacity: 0;
  transform: translateY(8px);
}

/* Animate when the element has been marked in-view by JS.
   Use --section-fade-delay to stagger (e.g. style="--section-fade-delay: .12s"). */
.section-dark.in-view,
.section-light.in-view,
.section-periwinkle.in-view,
.section-muave.in-view,
.section-emerald.in-view {
  animation: sectionFadeIn 1620ms cubic-bezier(0.2, 0.9, 0.2, 1) var(--section-fade-delay, 0s) both;
}

/* Respect user preference for reduced motion: skip animations and reveal immediately */
@media (prefers-reduced-motion: reduce) {
  .section-dark,
  .section-light,
  .section-periwinkle,
  .section-muave,
  .section-emerald {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
/* Section background variants */
.section-dark {
  background: #2f2f2f;
  color: #fff;
}

.section-light {
  background: #ffffff;
  color: #000;
}

.section-periwinkle {
  background: #eef0ff; /* muted light periwinkle */
  color: #1f2433; /* dark slate for good contrast */
}

.section-muave {
  background: #f5e6ff; /* soft mauve */
  color: #3b2c42; /* deep mauve for contrast */
}

.section-emerald {
  background: #91b6a7; /* light emerald */
  color: #1e312b; /* deep emerald for contrast */
}

/* Justification utilities */
.justify-left {
  text-align: left;
}

.justify-center {
  text-align: center;
}

.justify-right {
  text-align: right;
}

.justify-justify {
  text-align: justify;
}

/* Outcomes / cards wrapper */
.outcomes-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Individual service card */
.service-card {
  cursor: pointer;
  padding: 16px;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Card title row */
.service-card-title {
  margin: 0 0 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-card-arrow {
  color: rgb(134, 232, 145);
  margin-left: 12px;
  font-size: 3rem;
}

/* Expanded area */
.service-card-expanded {
  margin-top: 12px;
  border-top: 1px solid #eee;
  padding-top: 12px;
  color: #333;
}

.service-card-desc {
  white-space: pre-wrap;
  font-family: inherit;
  margin: 0;
  text-align: left;
}

/* Actions */
.service-card-actions {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.collapse-btn {
  border: none;
  background: #eee;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

/* Hero section background canvas */
.hero {
  position: relative;
  overflow: hidden; /* clip animated particles */
  z-index: 0; /* establish stacking context so children z-index values take effect */
}

dt {
  font-weight: bold;
  margin-top: 1em;
}

/* Canvas positioned as background for hero */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* keep the canvas behind content */
  pointer-events: none; /* let clicks pass through to content */
  display: block;
}

/* Ensure hero content sits above the canvas */
.hero > * {
  position: relative;
  z-index: 2; /* explicitly above the canvas */
}

.text-lg {
  font-size: 2rem;
}

.text-2xl {
  font-size: 2.5rem;
}

.text-4xl {
  font-size: 3rem;
}
