.t-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 28px;
  border-radius: 104px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.15s ease;
  box-sizing: border-box;
}
.t-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.t-btn:active {
  transform: translateY(0);
}
.t-btn--primary {
  background: #0077F7;
  color: #FFFFFF;
  border-color: #0077F7;
}
.t-btn--blue {
  background: #0077F7;
  color: #FFFFFF;
  border-color: #0077F7;
}
.t-btn--purple {
  background: #8B5CF6;
  color: #FFFFFF;
  border-color: #8B5CF6;
}
.t-btn--green {
  background: #10B981;
  color: #FFFFFF;
  border-color: #10B981;
}
.t-btn--outline-white {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.t-btn--hero {
  height: 40px;
  font-size: 14px;
}
.t-btn--cta {
  height: 49px;
}

.t-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #c8cdd6 0%, #dde1e7 50%, #c0c6d0 100%);
  position: relative;
}
.t-img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(0, 0, 0, 0.03) 12px, rgba(0, 0, 0, 0.03) 24px);
  border-radius: inherit;
}
.t-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.t-img-placeholder img[src=""], .t-img-placeholder img:not([src]) {
  display: none;
}

.t-hero {
  width: 100%;
  min-height: 738px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 180px 154px 140px;
  box-sizing: border-box;
  background: linear-gradient(180deg, #0098F9 26.76%, rgba(0, 152, 249, 0.33) 75%, rgba(0, 152, 249, 0) 100%);
}
.t-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 10;
}
.t-hero__content {
  position: relative;
  z-index: 5;
  flex: 0 1 780px;
  max-width: 780px;
}
.t-hero__eyebrow {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  color: #FFDF20;
  margin: 0 0 20px;
}
.t-hero__heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 60px;
  text-transform: capitalize;
  color: #FFFFFF;
  margin: 0 0 24px;
}
.t-hero__highlight {
  color: #FFDF20;
}
.t-hero__body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 36px;
  max-width: 591px;
}
.t-hero__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 11;
}
.t-hero__image-wrap {
  flex: 0 0 660px;
  width: 660px;
  height: 600px;
  position: relative;
  align-self: flex-end;
  overflow: visible;
}
.t-hero__card-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 78%;
  z-index: 1;
}
.t-hero__person-img {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 95%;
  aspect-ratio: 1984/2144;
  z-index: 2;
}
.t-hero__person-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.t-hero__person-img img[src=""], .t-hero__person-img img:not([src]) {
  display: none;
}

.t-partners {
  width: 100%;
  padding: 44px 0 32px;
  background: #FFFFFF;
  overflow: hidden;
}
.t-partners__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.35px;
  text-transform: capitalize;
  color: #4A5565;
  text-align: center;
  margin: 0 0 32px;
}
.t-partners__track-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.t-partners__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: t-partner-scroll 22s linear infinite;
}
.t-partners__track:hover {
  animation-play-state: paused;
}

.t-partner-logo {
  width: 240px;
  height: 76px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.t-partner-logo img {
  max-width: 190px;
  max-height: 58px;
  object-fit: contain;
}
.t-partner-logo img[src=""], .t-partner-logo img:not([src]) {
  display: none;
}
.t-partner-logo span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #4A5565;
  letter-spacing: 0.4px;
}

@keyframes t-partner-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.t-features {
  width: 100%;
  padding: 120px 151.5px;
  background: #FFFFFF;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.t-features__heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  margin: 0 0 56px;
  background: linear-gradient(90deg, #0D91F8 0%, #209AF3 17%, #46B4E3 34%, #5DC4D8 51%, #52B4B3 71%, #107B6C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.t-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1233px;
}

.t-feature-card {
  background: linear-gradient(139.02deg, #E8F4F8 3.05%, #FFF9E6 96.95%);
  border-radius: 16px;
  padding: 32px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.t-feature-card__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, #4A90E2 0%, #5FC3B4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.t-feature-card__icon-wrap img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.t-feature-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #0A0A0A;
  margin: 0 0 16px;
}
.t-feature-card__body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #4A5565;
  margin: 0;
}

.t-product {
  width: 100%;
  padding: 80px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.t-product--sparked {
  background: #F9F6FF;
}
.t-product--codebox {
  background: #E8F3FB;
}
.t-product--consulting {
  background: #FFFFFF;
}
.t-product__text {
  flex: 0 0 594.5px;
  max-width: 594.5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.t-product__eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin: 0 0 14px;
  display: block;
}
.t-product__eyebrow--purple {
  color: #8B5CF6;
}
.t-product__eyebrow--blue {
  color: #0077F7;
}
.t-product__eyebrow--green {
  color: #10B981;
}
.t-product__heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;
  color: #0A0A0A;
  margin: 0 0 16px;
}
.t-product__body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.44px;
  color: #4A5565;
  margin: 0 0 28px;
}
.t-product__image-wrap {
  flex: 0 0 594.5px;
  max-width: 594.5px;
  height: 400px;
  position: relative;
}
.t-product__image-wrap .t-img-placeholder {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.t-cta {
  width: 100%;
  min-height: 449px;
  background: #01554E;
  padding: 100px 143.5px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-cta__inner {
  max-width: 1249px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.t-cta__heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 84px;
  color: #FFFFFF;
  margin: 0 0 28px;
}
.t-cta__body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.45px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px;
  max-width: 672px;
}
.t-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1600px) {
  .t-hero {
    padding: 160px 100px 120px;
  }
  .t-hero__content {
    flex: 0 1 620px;
    max-width: 620px;
  }
  .t-hero__image-wrap {
    flex: 0 1 520px;
    width: auto;
    height: 520px;
  }
}
@media (max-width: 1280px) {
  .t-hero {
    padding: 130px 60px 100px;
  }
  .t-hero__content {
    flex: 0 1 480px;
    max-width: 480px;
  }
  .t-hero__image-wrap {
    flex: 0 1 400px;
    height: 460px;
  }
  .t-hero__heading {
    font-size: 36px;
    line-height: 52px;
  }
  .t-features {
    padding: 80px 60px;
  }
  .t-product {
    padding: 80px 60px;
    gap: 40px;
  }
  .t-product__text, .t-product__image-wrap {
    flex: 1 1 0;
    max-width: none;
  }
  .t-cta {
    padding: 80px 60px;
  }
}
@media (max-width: 960px) {
  .t-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 140px 40px 0;
    min-height: auto;
    gap: 0;
  }
  .t-hero__content {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding-bottom: 40px;
    position: relative;
    z-index: 5;
  }
  .t-hero__image-wrap {
    flex: none;
    width: 100%;
    height: 360px;
    align-self: auto;
  }
  .t-hero__heading {
    font-size: 32px;
    line-height: 46px;
  }
  .t-features {
    padding: 60px 40px;
  }
  .t-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .t-product {
    flex-direction: column !important;
    padding: 60px 40px;
  }
  .t-product__text {
    order: 1;
    flex: none;
    width: 100%;
    max-width: 100%;
  }
  .t-product__image-wrap {
    order: 2;
    flex: none;
    width: 100%;
    max-width: 100%;
    height: 300px;
  }
  .t-cta {
    padding: 60px 40px;
  }
  .t-cta__heading {
    font-size: 40px;
    line-height: 56px;
  }
}
@media (max-width: 600px) {
  .t-hero {
    padding: 130px 24px 0;
  }
  .t-hero__image-wrap {
    height: 300px;
  }
  .t-hero__heading {
    font-size: 28px;
    line-height: 40px;
  }
  .t-hero__body {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .t-hero__eyebrow {
    font-size: 13px;
  }
  .t-features {
    padding: 48px 24px;
  }
  .t-features__heading {
    font-size: 30px;
    line-height: 44px;
  }
  .t-features__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .t-product {
    padding: 48px 24px;
  }
  .t-product__heading {
    font-size: 32px;
    line-height: 48px;
  }
  .t-product__body {
    font-size: 16px;
  }
  .t-product__image-wrap {
    height: 240px;
  }
  .t-cta {
    padding: 48px 24px;
  }
  .t-cta__heading {
    font-size: 30px;
    line-height: 44px;
  }
  .t-cta__body {
    font-size: 17px;
  }
  .t-partner-logo {
    width: 180px;
    height: 64px;
  }
  .t-partner-logo img {
    max-width: 140px;
    max-height: 48px;
  }
}
@media (max-width: 400px) {
  .t-hero {
    padding: 120px 20px 0;
  }
  .t-hero__heading {
    font-size: 24px;
    line-height: 36px;
  }
  .t-hero__image-wrap {
    height: 260px;
  }
  .t-hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .t-hero__buttons .t-btn {
    text-align: center;
  }
  .t-product {
    padding: 40px 20px;
  }
  .t-cta {
    padding: 40px 20px;
  }
}

/*# sourceMappingURL=main.css.map */
