.home-page {
  background: #f5f6fa;
}

.home-page .home-hero-orbital {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.home-page .home-endcap {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(860px 460px at 86% 12%, rgba(70, 82, 255, 0.64), rgba(70, 82, 255, 0) 70%),
    radial-gradient(600px 320px at 8% 4%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 68%),
    linear-gradient(135deg, #05070f 0%, #070d28 40%, #16206b 100%);
}

.home-page .home-endcap::before,
.home-page .home-endcap::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(198, 210, 255, 0.16);
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
}

.home-page .home-endcap::before {
  width: 980px;
  height: 420px;
  top: -180px;
  right: -120px;
  transform: rotate(-8deg);
}

.home-page .home-endcap::after {
  width: 760px;
  height: 320px;
  bottom: 40px;
  left: -140px;
  transform: rotate(8deg);
}

.home-page .section {
  padding: 96px 0;
}

.home-page .home-endcap .cta-banner,
.home-page .home-endcap .footer {
  position: relative;
  z-index: 2;
  background: transparent;
}

.home-page .home-endcap .cta-banner {
  padding-top: 90px;
  padding-bottom: 44px;
}

.home-page .home-endcap .footer {
  padding-top: 30px;
}

.home-page .hero-shell {
  --hero-top-space: clamp(126px, 16vh, 188px);
  --hero-bottom-space: clamp(28px, 5vh, 60px);
  position: relative;
  overflow: hidden;
  border-radius: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  padding: var(--hero-top-space) 0 var(--hero-bottom-space);
  flex: 1;
  background:
    radial-gradient(860px 460px at 86% 12%, rgba(70, 82, 255, 0.64), rgba(70, 82, 255, 0) 70%),
    radial-gradient(600px 320px at 8% 4%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 68%),
    linear-gradient(135deg, #05070f 0%, #070d28 40%, #16206b 100%);
  box-shadow: inset 0 -30px 80px rgba(5, 10, 40, 0.25);
}

.home-page .hero-shell::before,
.home-page .hero-shell::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(198, 210, 255, 0.16);
  border-radius: 999px;
  pointer-events: none;
}

.home-page .hero-shell::before {
  width: 980px;
  height: 420px;
  top: -90px;
  right: -80px;
  transform: rotate(-8deg);
}

.home-page .hero-shell::after {
  width: 760px;
  height: 320px;
  bottom: 40px;
  left: -120px;
  transform: rotate(6deg);
}

.home-page .hero-custom-overlay {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-orbital-overlay.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.38;
  pointer-events: none;
}

.home-page .hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: auto auto;
  gap: clamp(28px, 4.6vh, 54px);
  align-items: start;
  align-content: center;
  min-height: calc(100vh - var(--hero-top-space) - var(--hero-bottom-space));
  min-height: calc(100dvh - var(--hero-top-space) - var(--hero-bottom-space));
}

.home-page .hero-copy {
  padding-right: 10px;
}

.home-page .hero-copy .hero-eyebrow,
.home-page .hero-copy h1,
.home-page .hero-copy .hero-subcopy,
.home-page .hero-copy .hero-cta-row {
  opacity: 0;
  will-change: transform, opacity;
}

.home-page .hero-copy .hero-eyebrow {
  animation: homeHeroFadeUp 0.52s ease-out 0.08s forwards;
}

.home-page .hero-copy h1 {
  animation: homeHeroFadeUp 0.56s ease-out 0.18s forwards;
}

.home-page .hero-copy .hero-subcopy {
  animation: homeHeroFadeUp 0.6s ease-out 0.3s forwards;
}

.home-page .hero-copy .hero-cta-row {
  animation: homeHeroFadeUp 0.6s ease-out 0.42s forwards;
}

.home-page .hero-eyebrow {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: clamp(26px, 4.6vh, 48px);
}

.home-page .hero-shell h1 {
  color: #fff;
  max-width: 620px;
  font-size: clamp(2.15rem, 3.75vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: clamp(34px, 5.2vh, 64px);
}

.home-page .hero-shell h1 span {
  display: block;
  white-space: nowrap;
}

.home-page .hero-subcopy {
  color: rgba(237, 240, 255, 0.88);
  font-size: 1.12rem;
  line-height: 1.6;
  max-width: 68ch;
  margin-bottom: clamp(40px, 6vh, 78px);
}

.home-page .hero-subcopy-short {
  display: none;
  color: rgba(237, 240, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.home-page .hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.home-page .hero-btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.64);
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.home-page .hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.home-page .hero-partner-mark {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(370px, 48%);
  --partner-mark-width: 95%;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
}

.home-page .hero-partner-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: center;
  opacity: 0;
  will-change: transform, opacity;
  animation:
    homePartnerPop 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards,
    homePartnerPulse 5s ease-in-out 1.4s infinite;
}

.home-page .hero-partner-cloud {
  position: relative;
  width: var(--partner-mark-width);
  margin-bottom: clamp(20px, 3vh, 34px);
}

.home-page .hero-partner-mark img {
  width: 100%;
  max-width: none;
  height: auto;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(-14px);
  will-change: transform, opacity;
  animation: homePartnerCloudIn 0.8s ease-out 0.3s forwards;
}

.home-page .hero-partner-mark .partner-line-1 {
  display: none;
}

.home-page .hero-partner-mark .partner-line-2 {
  display: none;
}

.home-page .hero-partner-mark .partner-line-single {
  width: var(--partner-mark-width);
  margin: 0 auto;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.98);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
  animation: homePartnerTextUp 0.82s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.home-page .hero-accolades-row {
  grid-column: 1 / -1;
  margin-top: clamp(4px, 1vh, 10px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-page .hero-accolade-item {
  min-width: 0;
  border-radius: 16px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 12px 24px rgba(2, 10, 38, 0.18);
}

.home-page .hero-accolade-item .value {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 24, 88, 0.35);
  line-height: 1;
  margin-bottom: 6px;
}

.home-page .hero-accolade-item .label {
  color: #dbe5ff;
  font-size: 0.88rem;
  line-height: 1.35;
  margin: 0;
}

.home-page .hero-wave {
  display: none;
}

.home-page .about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.home-page .home-about h2 {
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #004BFF 0%, #002a8f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.home-page .home-about .about-copy .lead {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e2833;
  line-height: 1.4;
  margin-bottom: 32px;
  max-width: 90%;
}

.home-page .home-about .about-copy p:not(.lead) {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #555570;
  margin-bottom: 20px;
  max-width: 54ch;
}

.home-page .home-about .about-copy p:last-child {
  margin-bottom: 0;
}

.home-page .about-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: stretch;
  height: 100%;
}

.home-page .about-stats-grid article {
  background: transparent;
  border: 1px solid #afb7c6;
  border-radius: 18px;
  padding: 22px;
  height: 100%;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.home-page .about-stats-grid article:nth-child(1) { transition-delay: 0s; }
.home-page .about-stats-grid article:nth-child(2) { transition-delay: 0.15s; }
.home-page .about-stats-grid article:nth-child(3) { transition-delay: 0.3s; }
.home-page .about-stats-grid article:nth-child(4) { transition-delay: 0.45s; }

.home-page .about-stats-grid.revealed article {
  opacity: 1;
  transform: translateY(0) scale(1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-page .about-stats-grid article:nth-child(1) {
  grid-column: 1 / span 3;
}

.home-page .about-stats-grid article:nth-child(2) {
  grid-column: 4 / span 3;
}

.home-page .about-stats-grid article:nth-child(3) {
  grid-column: 1 / span 2;
}

.home-page .about-stats-grid article:nth-child(4) {
  grid-column: 3 / span 4;
}

.home-page .about-stats-grid h3 {
  font-size: 2.2rem;
  color: #004bff;
  line-height: 1;
  margin-bottom: 8px;
}

.home-page .about-stats-grid p {
  margin: 0;
  color: #667286;
  font-size: 0.92rem;
}

.home-page .leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-page .home-team {
  background: #eef3fb;
}

.home-page .home-team .section-header h2 {
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #004BFF 0%, #002a8f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.home-page .home-team .section-header p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e2833;
  line-height: 1.4;
}

.home-page .leader-card {
  background: #fff;
  border: 1px solid #dce4f2;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(20, 28, 48, 0.08);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out, box-shadow 0.2s ease, border-color 0.2s ease;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.home-page .leader-card:nth-child(1) { transition-delay: 0s; }
.home-page .leader-card:nth-child(2) { transition-delay: 0.15s; }
.home-page .leader-card:nth-child(3) { transition-delay: 0.3s; }

.home-page .leadership-grid.revealed .leader-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-page .leader-card:hover,
.home-page .leader-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #004bff;
}

.home-page .leader-card img {
  width: 160px;
  height: 160px;
  border-radius: 999px;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid #edf2ff;
}

.home-page .leader-card h3 {
  margin-bottom: 6px;
}

.home-page .leader-card .role {
  color: #004bff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
  white-space: nowrap;
}

.home-page .leader-card p:not(.role) {
  color: #68707c;
  margin: 0 0 18px;
  width: 100%;
  text-align: left;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-page .leader-learn-more-btn {
  background: none;
  border: none;
  color: #004bff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-top: 0;
  padding: 0;
}

.home-page .leader-learn-more-btn:hover {
  text-decoration: underline;
}

.home-page .team-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.home-page .team-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.home-page .team-modal {
  background: #f4f4f4;
  border-radius: 12px;
  max-width: 760px;
  width: 92%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 28px 28px 32px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.home-page .team-modal-overlay.active .team-modal {
  transform: scale(1);
}

.home-page .team-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #68707c;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.home-page .team-modal-close:hover {
  color: #1e2833;
}

.home-page .team-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.home-page .team-modal-image {
  min-height: 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.home-page .team-modal-image img {
  width: 220px;
  height: 220px;
  min-height: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(18, 24, 41, 0.14);
  border: 4px solid #eef2fb;
}

.home-page .team-modal-logo {
  display: none !important;
}

.home-page .team-modal-info {
  background: transparent;
  padding: 0;
  text-align: center;
  max-width: 620px;
}

.home-page .team-modal-info h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e2833;
  margin-bottom: 6px;
}

.home-page .team-modal-info .role {
  display: block;
  color: #68707c;
  font-weight: 500;
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.home-page .team-modal-info .role::after {
  display: none;
}

.home-page .team-modal-info .bio {
  font-size: 1.02rem;
  color: #3f3f3f;
  line-height: 1.75;
  text-align: center;
}

.home-page .home-services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .home-services .section-header h2 {
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #004BFF 0%, #002a8f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.home-page .home-services .section-header p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e2833;
  line-height: 1.4;
}

.home-page .home-services .service-card {
  padding: 30px;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.home-page .home-services .service-card:nth-child(1) { transition-delay: 0s; }
.home-page .home-services .service-card:nth-child(2) { transition-delay: 0.15s; }
.home-page .home-services .service-card:nth-child(3) { transition-delay: 0.3s; }
.home-page .home-services .service-card:nth-child(4) { transition-delay: 0.45s; }

.home-page .home-services-grid.revealed .service-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-page .home-testimonials .section-header h2 {
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #004BFF 0%, #002a8f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.home-page .home-testimonials {
  background: #eef3fb;
}

.home-page .home-testimonials .section-header p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e2833;
  line-height: 1.4;
}

.home-page .home-case-studies .section-header h2 {
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #004BFF 0%, #002a8f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.home-page .case-studies-grid .case-study-card {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.home-page .case-studies-grid .case-study-card:nth-child(1) { transition-delay: 0s; }
.home-page .case-studies-grid .case-study-card:nth-child(2) { transition-delay: 0.15s; }
.home-page .case-studies-grid .case-study-card:nth-child(3) { transition-delay: 0.3s; }

.home-page .case-studies-grid.revealed .case-study-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-page .home-case-studies .section-header p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e2833;
  line-height: 1.4;
}

.home-page .testimonials-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.home-page .testimonial-track-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
  padding-top: 8px;
}

.home-page .testimonial-card {
  position: absolute;
  top: 8px;
  width: min(680px, 70%);
  left: 50%;
  transform: translateX(-50%) scale(0.88);
  border-radius: 22px;
  border: 1px solid #dae2f1;
  background: #ffffff;
  padding: 38px;
  box-shadow: 0 16px 36px rgba(18, 24, 41, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  filter: blur(0.3px);
}

.home-page .testimonial-card .quote {
  color: #3f4a5f;
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.home-page .testimonial-card .author {
  color: #1e2833;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.home-page .testimonial-card .meta {
  margin: 0;
  color: #68707c;
  font-size: 0.95rem;
}

.home-page .testimonial-card.is-active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  z-index: 3;
  pointer-events: auto;
  filter: none;
}

.home-page .testimonial-card.is-active:hover,
.home-page .testimonial-card.is-active:focus-within {
  transform: translateX(-50%) translateY(-4px) scale(1);
  box-shadow: var(--shadow-lg);
  border-color: #004bff;
}

.home-page .testimonial-card.is-prev {
  opacity: 0.52;
  transform: translateX(-94%) scale(0.92);
  z-index: 2;
}

.home-page .testimonial-card.is-next {
  opacity: 0.52;
  transform: translateX(-6%) scale(0.92);
  z-index: 2;
}

.home-page .testimonial-card.is-hidden {
  opacity: 0;
  transform: translateX(-50%) scale(0.86);
  z-index: 1;
}

.home-page .testimonial-nav {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #cfd8eb;
  background: #ffffff;
  color: #004bff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-page .testimonial-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 75, 255, 0.16);
  background: #f4f8ff;
}

@keyframes homeHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Footer CTA Column --- */
.home-page .footer {
  padding-top: 140px;
}

.home-page .footer-content {
  align-items: center;
  margin-bottom: 24px;
}

.home-page .footer-brand-column {
  flex: 0 0 auto;
  align-self: center;
  align-items: flex-start;
  padding: 0;
  margin: 0;
}

.home-page .footer-logo {
  display: block;
  padding: 0;
  margin: 0;
}

.home-page .footer-logo img {
  max-width: 200px;
  max-height: 300px;
  margin: 0;
  padding: 0;
  display: block;
  margin-left: -40px;
}

.home-page .footer-cta-column {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-cta-heading {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.footer-cta-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.15rem;
  margin-bottom: 24px;
}

.footer-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-cta-btn:hover {
  background: #ffffff;
  color: #0a1628;
}

@keyframes homePartnerPop {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes homePartnerCloudIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homePartnerTextUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homePartnerPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.008);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-copy .hero-eyebrow,
  .home-page .hero-copy h1,
  .home-page .hero-copy .hero-subcopy,
  .home-page .hero-copy .hero-cta-row,
  .home-page .hero-partner-mark,
  .home-page .hero-partner-unit,
  .home-page .hero-partner-mark img,
  .home-page .hero-partner-mark .partner-line-single {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1100px) {
  .home-page .home-hero-orbital {
    min-height: auto;
  }

  .home-page .hero-shell {
    min-height: auto;
    padding: 108px 0 40px;
  }

  .home-page .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
  }

  .home-page .hero-partner-mark {
    position: static;
    transform: none;
    justify-self: start;
    width: auto;
    margin-top: 0;
    margin-bottom: 8px;
    opacity: 0.75;
  }

  .home-page .hero-partner-unit {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .home-page .hero-partner-cloud {
    width: 76px;
    flex-shrink: 0;
  }

  .home-page .hero-partner-cloud img {
    width: 76px !important;
    margin-bottom: 0 !important;
    display: block;
  }

  .home-page .partner-line-single {
    font-size: 0.32rem;
    letter-spacing: 0.08em;
    margin: 0;
    position: relative;
    top: -11px;
  }

  .home-page .hero-accolades-row {
    grid-template-columns: 1fr 1fr;
  }

  .home-page .about-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-page .testimonial-track-wrap {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .home-page .hero-shell {
    border-radius: 0;
    min-height: 100dvh;
    min-height: 100vh;
    padding: 80px 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .home-page .hero-subcopy {
    display: none;
  }

  .home-page .hero-subcopy-short {
    display: block;
  }

  .home-page .hero-shell h1 span {
    white-space: normal;
  }

  .home-page .hero-shell h1 {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }

  .home-page .hero-eyebrow {
    margin-bottom: 18px;
  }

  .home-page .hero-accolades-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .home-page .hero-cta-row {
    flex-direction: column;
  }

  .home-page .hero-cta-row .btn {
    text-align: center;
  }

  .home-page .hero-partner-mark {
    position: static;
    transform: none;
    width: auto;
    margin-top: 0;
    margin-bottom: 8px;
    opacity: 0.75;
  }

  .home-page .hero-partner-unit {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .home-page .hero-partner-cloud {
    width: 76px;
    flex-shrink: 0;
  }

  .home-page .hero-partner-cloud img {
    width: 76px !important;
    margin-bottom: 0 !important;
    display: block;
  }

  .home-page .partner-line-single {
    font-size: 0.32rem;
    letter-spacing: 0.08em;
    margin: 0;
    position: relative;
    top: -11px;
  }

  .home-page .hero-accolade-item {
    padding: 12px;
  }

  .home-page .hero-accolade-item .value {
    font-size: 1.45rem;
  }

  .home-page .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .home-page .about-stats-grid article:nth-child(1),
  .home-page .about-stats-grid article:nth-child(2),
  .home-page .about-stats-grid article:nth-child(3),
  .home-page .about-stats-grid article:nth-child(4) {
    grid-column: auto;
    transform: none;
    min-height: auto;
  }

  .home-page .leadership-grid,
  .home-page .home-services-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-team .section-header p {
    font-size: 1.25rem;
  }

  .home-page .home-services .section-header p {
    font-size: 1.25rem;
  }

  .home-page .home-testimonials .section-header p {
    font-size: 1.25rem;
  }

  .home-page .home-case-studies .section-header p {
    font-size: 1.25rem;
  }

  .home-page .testimonials-carousel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-page .testimonial-track-wrap {
    height: 460px;
  }

  .home-page .testimonial-card {
    width: 100%;
    left: 0;
    transform: translateX(0) scale(0.98);
    padding: 22px;
  }

  .home-page .testimonial-card.is-active {
    transform: translateX(0) scale(1);
  }

  .home-page .testimonial-card.is-prev,
  .home-page .testimonial-card.is-next,
  .home-page .testimonial-card.is-hidden {
    opacity: 0;
    transform: translateX(0) scale(0.96);
  }

  .home-page .testimonial-nav {
    width: 44px;
    height: 44px;
    justify-self: center;
  }

  .home-page .team-modal {
    padding: 20px 16px 24px;
  }

  .home-page .team-modal-content {
    flex-direction: column;
  }

  .home-page .team-modal-info {
    text-align: center;
    padding: 0;
  }

  .home-page .team-modal-image img {
    width: 170px;
    height: 170px;
  }

  .home-page .team-modal-info .bio {
    font-size: 1rem;
  }
}
