/* Homepage ending — open footer, no divider lines */

.home-final-cta__shell,
.home-final-cta__upper,
.home-final-cta__brandCol,
.home-final-cta__nav,
.home-final-cta__bar {
  border: none !important;
  box-shadow: none;
}

.home-final-cta__nav {
  padding-left: 0 !important;
}

.home-final-cta {
  --endcap-bg: #050b1d;
  --endcap-pink: #ec4899;
  --endcap-blue: #3b82f6;
  --endcap-gradient: linear-gradient(90deg, var(--endcap-pink), var(--endcap-blue));

  position: relative;
  z-index: 2;
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: clamp(8px, 1.5vw, 16px) 0;
}

.home-final-cta__glow {
  position: absolute;
  left: 50%;
  top: 38%;
  z-index: 0;
  width: min(68%, 680px);
  height: min(48%, 280px);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.06), transparent 72%);
  filter: blur(48px);
  pointer-events: none;
}

.home-final-cta__shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: clamp(280px, 34vh, 380px);
  overflow: visible;
  padding: clamp(4px, 1vw, 12px) 0 clamp(20px, 3vw, 32px);
  background: transparent;
  border: none;
  box-shadow: none;
}

.home-final-cta__bgWord {
  position: absolute;
  left: 50%;
  bottom: clamp(8px, 1.5vw, 16px);
  z-index: 0;
  transform: translateX(-50%) translateY(clamp(14px, 2.5vw, 28px));
  font-size: clamp(5.5rem, 15vw, 11rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.06em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.14) 0%,
    rgba(59, 130, 246, 0.07) 55%,
    rgba(59, 130, 246, 0.03) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.52;
  -webkit-mask-image: linear-gradient(to top, #000 44%, rgba(0, 0, 0, 0.4) 74%, transparent 96%);
  mask-image: linear-gradient(to top, #000 44%, rgba(0, 0, 0, 0.4) 74%, transparent 96%);
}

.home-final-cta__upper {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(72px, 10vw, 108px);
  border: none;
}

.home-final-cta__brandCol {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.6vw, 16px);
  max-width: 640px;
  margin: 0 auto;
  transform: translateY(clamp(-8px, -1vw, -14px));
}

.home-final-cta__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-final-cta__logo {
  display: inline-block;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f8fafc;
  text-decoration: none;
}

.home-final-cta__logoAccent {
  background: var(--endcap-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-final-cta__tagline {
  margin: 10px auto 0;
  max-width: 38ch;
  font-size: clamp(0.86rem, 1vw, 0.94rem);
  line-height: 1.6;
  color: rgba(148, 163, 184, 0.9);
}

.home-final-cta__ctaBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: clamp(4px, 0.8vw, 8px);
}

.home-final-cta__headline {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.home-final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    filter 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.home-final-cta__btnIcon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.home-final-cta__btn--primary {
  border: none;
  color: #fff;
  background: var(--endcap-gradient);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.32);
}

.home-final-cta__btn--primary:hover {
  filter: brightness(1.06);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(236, 72, 153, 0.22), 0 16px 38px rgba(59, 130, 246, 0.28);
}

.home-final-cta__nav {
  display: flex;
  align-items: center;
  padding: 0;
  border: none;
}

.home-final-cta__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 20px);
}

.home-final-cta__links li {
  display: inline-flex;
  align-items: center;
}

.home-final-cta__links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(203, 213, 225, 0.82);
  text-decoration: none;
  transition: color 0.15s ease;
}

.home-final-cta__links a:hover {
  color: #fff;
}

.home-final-cta__email {
  color: rgba(148, 163, 184, 0.88) !important;
  font-size: 0.84rem !important;
}

.home-final-cta__bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: auto;
  padding-top: clamp(20px, 2.5vw, 28px);
  border: none;
}

.home-final-cta__copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.78);
}

.home-final-cta__barEnd {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(16px, 2.5vw, 24px);
}

.home-final-cta__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-final-cta__socialLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: rgba(203, 213, 225, 0.72);
  background: rgba(5, 11, 29, 0.4);
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.home-final-cta__socialLink svg {
  width: 15px;
  height: 15px;
}

.home-final-cta__socialLink:hover {
  border-color: rgba(59, 130, 246, 0.4);
  color: #fff;
  background: rgba(15, 23, 42, 0.55);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.14);
}

@media (max-width: 960px) {
  .home-final-cta__upper {
    padding-bottom: clamp(48px, 10vw, 72px);
  }

  .home-final-cta__nav {
    justify-content: center;
  }

  .home-final-cta__links {
    justify-content: center;
  }

  .home-final-cta__barEnd {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .home-final-cta__shell {
    min-height: clamp(300px, 52vh, 380px);
  }

  .home-final-cta__actions {
    flex-direction: column;
  }

  .home-final-cta__btn {
    width: 100%;
  }

  .home-final-cta__bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .home-final-cta__barEnd {
    flex-direction: column;
    gap: 16px;
  }

  .home-final-cta__bgWord {
    font-size: clamp(4.5rem, 22vw, 7.5rem);
    bottom: clamp(4px, 2vw, 12px);
    transform: translateX(-50%) translateY(clamp(10px, 4vw, 20px));
    opacity: 0.48;
  }

  .home-final-cta__brandCol {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-final-cta__btn {
    transition: none;
  }

  .home-final-cta__btn--primary:hover {
    transform: none;
  }
}
