@keyframes homeGlow {
  0% {
    transform: scale(0.95);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.95;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.65;
  }
}

@keyframes orbitFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes orbitPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 174, 148, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(10, 174, 148, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 174, 148, 0);
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.home-shell {
  background: var(--home-muted);
  color: var(--home-ink);
}

.home-hero {
  background: var(--home-primary, #0AAE94);
  color: #fff;
  padding: clamp(3.2rem, 6vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.home-hero__glow {
  position: absolute;
  inset: 10% auto auto 50%;
  width: 420px;
  height: 420px;
  background: rgba(10, 174, 148, 0.15);
  transform: translateX(-50%);
  filter: blur(12px);
  animation: homeGlow 8s ease-in-out infinite;
  pointer-events: none;
  border-radius: 50%;
}

.home-hero__badge {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
  box-shadow: 0 15px 30px rgba(1, 15, 22, 0.35);
  backdrop-filter: blur(8px);
}

.home-hero__badge i {
  color: var(--home-accent, #FFB300);
}

.home-hero__badge small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.65);
}

.home-hero__status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.home-hero__status span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: orbitFloat 6s ease-in-out infinite;
}

.home-hero__status span:nth-child(2) {
  animation-delay: 0.4s;
}

.home-hero__status span:nth-child(3) {
  animation-delay: 0.8s;
}

.home-hero__cta {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 20px 40px rgba(1, 15, 22, 0.35);
}

.home-hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 45px rgba(1, 15, 22, 0.45);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.home-hero__visual {
  position: relative;
}

.home-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 1rem;
}

.home-chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.home-hero__panel {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.25);
  padding: 1.75rem;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.home-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.home-hero__stat {
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.18);
}

.home-hero__stat small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

.home-hero__stat strong {
  font-size: 1.9rem;
  display: block;
}

.home-hero__orbit {
  position: absolute;
  right: -36px;
  bottom: -24px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.85);
  animation: orbitFloat 6s ease-in-out infinite;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.2);
}

.home-hero__orbit--primary {
  right: -36px;
  bottom: -24px;
  animation-delay: 0.2s;
}

.home-hero__orbit--secondary {
  top: -30px;
  left: -10px;
  width: 110px;
  height: 110px;
  animation-delay: 0.6s;
}

.home-hero__orbit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 179, 0, 0.2);
  color: var(--home-accent, #FFB300);
  animation: orbitPulse 3.2s ease-in-out infinite;
}

.home-hero__orbit small {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.home-signal {
  background: #03121c;
  color: rgba(255, 255, 255, 0.88);
  padding: 1.1rem 0;
}

.home-marquee {
  background: rgba(10, 174, 148, 0.15);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-marquee__track {
  display: flex;
  min-width: 200%;
  gap: 2rem;
  padding: 0.85rem 0;
  animation: marqueeScroll 28s linear infinite;
}

.home-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}

.home-marquee__item i {
  color: var(--home-accent, #FFB300);
}

.home-spectrum {
  background: var(--home-muted, #FFFFFF);
  padding: 2.5rem 0 2rem;
}

.home-spectrum__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.home-spectrum__card {
  border-radius: 1.2rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: 0 25px 45px rgba(5, 23, 33, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-spectrum__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(5, 23, 33, 0.12);
}

.home-spectrum__card strong {
  font-size: 1.5rem;
}

.home-spectrum__card small {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #6c7b88;
}

.home-spectrum__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(10, 174, 148, 0.12);
  color: var(--home-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.home-spectrum__card--accent {
  background: var(--home-accent, #FFB300);
  color: #fff;
  border-color: transparent;
}

.home-spectrum__card--accent small {
  color: rgba(255, 255, 255, 0.7);
}

.home-signal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.home-section {
  padding: clamp(3rem, 5vw, 5.5rem) 0;
}

.home-section__head {
  margin-bottom: 2.5rem;
}

.home-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32rem;
  font-size: 0.78rem;
  color: #7a8a98;
  margin-bottom: 0.6rem;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.home-card {
  border-radius: 1.4rem;
  border: 1px solid var(--home-border);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 30px 70px rgba(4, 18, 26, 0.08);
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(4, 18, 26, 0.12);
}

.home-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.home-card ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.35rem;
  color: #6c7b88;
  font-size: 0.9rem;
}

.home-solutions,
.home-modules,
.home-resources {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.home-module__code {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #98a4b1;
}

.home-journeys {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.home-journey {
  border-radius: 1.5rem;
  border: 1px solid var(--home-border);
  background: #ffffff;
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.home-journey small {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--home-muted);
}

.home-journey__tags {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.home-journey__tags span {
  border-radius: 999px;
  border: 1px solid rgba(4, 18, 26, 0.1);
  padding: 0.2rem 0.75rem;
  font-size: 0.78rem;
}

.home-trust-panel {
  border-radius: 2rem;
  background: var(--home-primary, #0AAE94);
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(2rem, 4vw, 3.2rem);
}

.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.home-trust-card {
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  padding: 1.4rem;
}

.home-resource-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.4rem;
}

.home-resource-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--home-ink);
}

.home-cta {
  border-radius: 2rem;
  background: var(--home-primary, #0AAE94);
  color: #fff;
  padding: clamp(2.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: center;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 991.98px) {
  .home-hero__orbit {
    display: none;
  }
  .home-hero__status span {
    width: 100%;
  }
  .home-marquee__track {
    animation-duration: 18s;
  }
}

/* ===== New UX sections ===== */
.home-section--alt {
  background: var(--home-muted-alt);
}
.home-shortcuts {
  border-bottom: 1px solid var(--home-border);
  padding-block: 2rem;
}
.home-shortcuts__shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: center;
}
.home-shortcuts__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.home-shortcuts__chip {
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  background: #fff;
  border: 1px solid var(--home-border);
  color: var(--home-ink);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.home-shortcuts__chip:hover {
  border-color: var(--home-primary);
  color: var(--home-primary);
}
.home-section__layout {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.home-section__layout--split {
  justify-content: space-between;
  align-items: flex-start;
}
.home-section__note {
  background: rgba(10, 174, 148, 0.1);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  max-width: 320px;
}
.home-section__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  color: var(--home-ink);
}
.home-section__info-list i {
  color: var(--home-primary);
  margin-right: 0.4rem;
}
.home-panel {
  border-radius: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.home-panel__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}
.home-panel__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.home-hero__stats--inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
.home-metrics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.home-metric-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--home-border);
  padding: 1.2rem;
  box-shadow: 0 25px 45px rgba(5, 23, 33, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(5, 23, 33, 0.12);
}
.home-metric-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(10, 174, 148, 0.12);
  color: var(--home-primary);
  margin-bottom: 0.35rem;
}
.home-metrics__foot {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.home-metrics__label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #6c7b88;
}
.home-metrics__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.home-metrics__pills span {
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--home-border);
  font-size: 0.85rem;
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}
.home-stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.home-story {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid var(--home-border);
  padding: 1.5rem;
  box-shadow: 0 24px 48px rgba(4, 18, 26, 0.06);
}
.home-story__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.home-story__list li {
  display: flex;
  gap: 0.9rem;
}
.home-story__badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(10, 174, 148, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--home-primary);
}
.home-story__list--compact li {
  justify-content: space-between;
  gap: 1rem;
}
.home-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.home-plan-card {
  border: 1px solid var(--home-border);
  border-radius: 1.2rem;
  padding: 1.25rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home-plan-card__price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--home-ink);
}
.home-card--panel {
  border: 1px solid var(--home-border);
}
.home-panel__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(10, 174, 148, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--home-primary);
}
.home-panel__meta--chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.home-panel__meta--chips span {
  font-size: 0.85rem;
  color: #6c7b88;
}
.home-card--pill {
  background: #fff;
}
.home-intelligence {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.home-spotlight-list,
.home-mission-list {
  display: grid;
  gap: 1rem;
}
.home-spotlight,
.home-mission {
  border: 1px solid var(--home-border);
  border-radius: 1.2rem;
  padding: 1.25rem;
  background: #fff;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.home-mission__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #6c7b88;
}
.home-section--stories {
  background: var(--home-muted);
}

@media (max-width: 767.98px) {
  .home-section__layout--split {
    flex-direction: column;
  }
  .home-panel__actions {
    width: 100%;
  }
  .home-panel__actions .btn {
    flex: 1 1 auto;
  }
}

