:root {
  --sd-blue: #1f6fe0;
  --sd-ink: #15171a;
  --sd-muted: #60666e;
  --sd-soft: #f3f4f6;
}

.solution-detail-page {
  overflow-x: hidden;
  color: var(--sd-ink);
}

.solution-detail-page .detail-shell {
  width: min(calc(100% - 240px), 1680px);
  margin-inline: auto;
}

@media (min-width: 1101px) {
  body.solution-detail-page .about-header.global-scroll-header {
    position: sticky !important;
    z-index: 1000 !important;
    top: 0 !important;
    min-height: 100px !important;
    height: 100px !important;
    margin-bottom: -100px !important;
    padding: 0 max(120px, calc((100vw - 1680px) / 2)) !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff !important;
  }

  body.solution-detail-page .about-header.global-scroll-header:not(.is-floating) > a:first-child {
    filter: brightness(0) invert(1) !important;
  }

  body.solution-detail-page .about-header.global-scroll-header:not(.is-floating) > nav {
    color: rgba(255, 255, 255, .72) !important;
  }

  body.solution-detail-page .about-header.global-scroll-header:not(.is-floating) > nav a:hover,
  body.solution-detail-page .about-header.global-scroll-header:not(.is-floating) > nav a.active {
    color: #fff !important;
  }

  body.solution-detail-page .about-header.global-scroll-header.is-floating {
    min-height: 74px !important;
    height: 74px !important;
    margin-bottom: -74px !important;
    background: rgba(244, 245, 247, .95) !important;
    box-shadow: 0 12px 34px rgba(16, 34, 58, .11) !important;
    color: #111 !important;
    backdrop-filter: blur(18px);
  }

  body.solution-detail-page .about-header.global-scroll-header.is-floating > a:first-child {
    filter: none !important;
  }

  body.solution-detail-page .about-header.global-scroll-header.is-floating > nav {
    color: #404247 !important;
  }
}

.solution-detail-hero {
  position: relative;
  display: flex;
  height: 700px;
  align-items: flex-start;
  overflow: hidden;
}

.solution-detail-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(4, 15, 29, .28);
  content: "";
}

.solution-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.solution-hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 260px;
  color: #fff;
}

.solution-hero-copy h1 {
  width: min(800px, 100%);
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 58px;
}

.solution-hero-summary {
  width: min(747px, 100%);
  margin: 20px 0 16px !important;
  color: rgba(255, 255, 255, .8);
  font-size: 20px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 24px !important;
}

.solution-detail-pill {
  display: inline-flex;
  min-width: 188px;
  height: 48px;
  padding: 0 32px;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: var(--sd-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.sd-gallery,
.sd-videos,
.sd-cases,
.sd-products,
.sd-applications {
  box-sizing: border-box;
  padding: 120px 0;
}

.sd-gallery h2,
.sd-videos h2,
.sd-section-head h2,
.sd-products h2 {
  margin: 0;
  color: var(--sd-blue);
  font-size: 48px;
  font-weight: 400;
  line-height: 58px;
}

.sd-gallery {
  min-height: 1020px;
}

.sd-gallery-grid {
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 60px;
}

.sd-gallery-grid article {
  min-width: 0;
}

.sd-gallery-media {
  display: block;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.sd-gallery-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sd-gallery-grid h3 {
  margin: 24px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 27px;
}

.sd-videos {
  min-height: 956px;
  overflow: hidden;
}

.sd-videos h2 {
  width: min(750px, 100%);
}

.sd-videos .sd-track-shell {
  margin-top: 118px;
}

.sd-track-shell {
  position: relative;
  margin-top: 60px;
}

.sd-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.sd-track::-webkit-scrollbar,
.sd-case-grid::-webkit-scrollbar,
.sd-product-grid::-webkit-scrollbar {
  display: none;
}

.sd-media-card {
  position: relative;
  isolation: isolate;
  flex: 0 0 750px;
  height: 540px;
  overflow: hidden;
  border-radius: 20px;
  clip-path: inset(0 round 20px);
  background: #18202b;
  color: #fff;
  scroll-snap-align: start;
}

.sd-media-card > img,
.sd-media-card > video,
.sd-application-card > img,
.sd-case-grid article > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sd-media-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 198px;
  background: linear-gradient(180deg, rgba(19, 29, 41, 0), rgba(19, 29, 41, .94));
  content: "";
  backdrop-filter: blur(8px);
  mask-image: linear-gradient(to bottom, transparent, #000 40%);
  opacity: 1;
  pointer-events: none;
  transition: opacity .35s ease;
}

.sd-media-card > div {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  pointer-events: none;
  transition: opacity .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}

.sd-media-card h3 {
  max-width: 640px;
  margin: 0;
  font-size: 24px;
  line-height: 27px;
}

.sd-media-card p {
  display: -webkit-box;
  max-width: 630px;
  max-height: 96px;
  margin: 8px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .6);
  font-size: 18px;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.sd-application-card span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  place-items: center;
  font-size: 20px;
}

.sd-video-toggle {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  place-items: center;
  background: rgba(15, 21, 29, .28);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background .25s ease, transform .25s ease;
}

.sd-video-toggle:hover,
.sd-video-toggle:focus-visible {
  background: rgba(15, 21, 29, .58);
  transform: scale(1.06);
}

.sd-video-toggle span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.sd-media-card.is-playing::after {
  opacity: 0;
}

.sd-media-card.is-playing > div {
  opacity: 0;
  transform: translateY(12px);
}

.sd-media-card.is-playing .sd-video-toggle span {
  width: 10px;
  height: 12px;
  margin-left: 0;
  border: 0;
  border-right: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.sd-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.sd-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 70px;
  height: 70px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: var(--sd-blue);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transform: translateY(-50%);
}

.sd-arrow:disabled {
  background: #d6d9dd;
}

.sd-cases {
  min-height: 818px;
  overflow: hidden;
  background: var(--sd-soft);
}

.sd-case-track-shell {
  margin-top: 60px;
}

.sd-case-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.sd-case-grid article {
  position: relative;
  isolation: isolate;
  flex: 0 0 620px;
  height: 460px;
  overflow: hidden;
  border-radius: 20px;
  clip-path: inset(0 round 20px);
  background: #1c232c;
  color: #fff;
  scroll-snap-align: start;
}

.sd-case-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.sd-case-grid article::after {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  height: 171px;
  border-radius: 10px;
  background: rgba(42, 44, 47, .24);
  content: "";
  backdrop-filter: blur(22px);
}

.sd-case-grid article > div {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 48px;
  left: 48px;
}

.sd-case-grid h3 {
  width: calc(100% - 52px);
  margin: 0;
  overflow: hidden;
  font-size: 24px;
  line-height: 27px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sd-case-grid p {
  display: -webkit-box;
  width: min(400px, calc(100% - 52px));
  margin: 30px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .6);
  font-size: 18px;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sd-case-grid span {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 24px;
}

.sd-case-track-shell .sd-arrow.prev {
  left: 24px;
}

.sd-case-track-shell .sd-arrow.next {
  right: -4px;
}

.sd-products {
  min-height: 861px;
  overflow: hidden;
}

.sd-products-layout {
  position: relative;
  display: grid;
  grid-template-columns: 480px minmax(0, 1fr);
  gap: 117px;
  align-items: start;
}

.sd-products-note {
  position: absolute;
  top: 5px;
  right: 0;
  width: 444px;
  margin: 0;
  color: var(--sd-muted);
  font-size: 20px;
  line-height: 24px;
}

.sd-products-copy strong {
  display: block;
  width: 450px;
  margin-top: 60px;
  font-size: 24px;
  line-height: 27px;
}

.sd-products-copy p {
  width: 537px;
  margin: 20px 0 0;
  color: var(--sd-muted);
  font-size: 20px;
  line-height: 24px;
}

.sd-mini-arrows {
  display: flex;
  margin-top: 181px;
  gap: 40px;
}

.sd-mini-arrows button {
  display: grid;
  width: 70px;
  height: 70px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: #d6d9dd;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.sd-mini-arrows button:last-child {
  background: var(--sd-blue);
}

.sd-product-grid {
  display: flex;
  gap: 24px;
  padding-top: 118px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.sd-product-grid article {
  flex: 0 0 402px;
  min-width: 0;
  scroll-snap-align: start;
}

.sd-product-media {
  position: relative;
  display: block;
  width: 402px;
  height: 456px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--sd-soft);
}

.sd-product-media img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  max-width: none;
  object-fit: cover;
  translate: -50% -50%;
}

.sd-product-grid article:nth-child(1) img {
  width: 601px;
  height: 338px;
}

.sd-product-grid article:nth-child(2) img {
  width: 645px;
  height: 363px;
}

.sd-product-grid article:nth-child(3) img {
  width: 178px;
  height: 317px;
}

.sd-product-grid h3 {
  margin: 20px 0 0;
  color: var(--sd-blue);
  font-size: 24px;
  line-height: 27px;
  text-align: center;
}

.sd-applications {
  min-height: 976px;
  overflow: hidden;
}

.sd-applications .sd-section-head h2 {
  width: min(750px, 100%);
}

.application-track-shell {
  margin-top: 60px;
}

.sd-application-card {
  position: relative;
  flex: 0 0 520px;
  height: 560px;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  scroll-snap-align: start;
}

.sd-application-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 168px;
  background: linear-gradient(180deg, transparent, rgba(11, 19, 28, .88));
  content: "";
}

.sd-application-card > div {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.sd-application-card h3 {
  width: calc(100% - 56px);
  margin: 0;
  font-size: 24px;
  line-height: 27px;
}

.sd-application-card p {
  display: -webkit-box;
  width: calc(100% - 56px);
  margin: 19px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .6);
  font-size: 18px;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.application-track-shell .sd-arrow.prev {
  left: 96px;
}

.application-track-shell .sd-arrow.next {
  right: -6px;
}

.sd-applications + .shared-cta {
  margin-top: 0;
}

@media (max-width: 1500px) and (min-width: 1101px) {
  .solution-detail-page .detail-shell {
    width: calc(100% - 120px);
  }

  .sd-gallery-media {
    height: 220px;
  }

  .sd-media-card {
    flex-basis: min(750px, calc(55vw - 60px));
  }

  .sd-products-layout {
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 70px;
  }

  .sd-products-copy p {
    width: 480px;
  }
}

@media (max-width: 1100px) {
  .solution-detail-page .detail-shell {
    width: calc(100% - 48px);
  }

  .solution-detail-hero {
    height: 620px;
  }

  .solution-hero-copy {
    padding-top: 180px;
  }

  .sd-gallery,
  .sd-videos,
  .sd-cases,
  .sd-products,
  .sd-applications {
    min-height: 0;
    padding: 80px 0;
  }

  .sd-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sd-media-card {
    flex-basis: 78vw;
  }

  .sd-case-grid article {
    flex-basis: 72vw;
  }

  .sd-products-layout {
    display: block;
  }

  .sd-products-note {
    position: static;
    width: min(600px, 100%);
    margin-top: 24px;
  }

  .sd-products-copy strong,
  .sd-products-copy p {
    width: min(600px, 100%);
  }

  .sd-mini-arrows {
    margin-top: 42px;
  }

  .sd-product-grid {
    padding-top: 50px;
  }
}

@media (max-width: 760px) {
  .solution-detail-page .detail-shell {
    width: calc(100% - 32px);
  }

  .solution-hero-copy h1,
  .sd-gallery h2,
  .sd-videos h2,
  .sd-section-head h2,
  .sd-products h2 {
    font-size: 36px;
    line-height: 43px;
  }

  .solution-hero-summary {
    font-size: 17px !important;
    line-height: 23px !important;
  }

  .sd-gallery-grid {
    column-gap: 14px;
    row-gap: 34px;
  }

  .sd-gallery-media {
    height: auto;
    aspect-ratio: 1.6;
  }

  .sd-gallery-grid h3 {
    margin-top: 14px;
    font-size: 17px;
    line-height: 22px;
  }

  .sd-media-card,
  .sd-case-grid article {
    flex-basis: 86vw;
    height: 470px;
  }

  .sd-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .sd-product-grid article {
    flex-basis: 76vw;
  }

  .sd-product-media {
    width: 76vw;
    height: 400px;
  }

  .sd-application-card {
    flex-basis: 84vw;
    height: 500px;
  }

  .sd-arrow {
    width: 54px;
    height: 54px;
  }

  .sd-case-track-shell .sd-arrow.prev,
  .application-track-shell .sd-arrow.prev {
    left: 12px;
  }

  .sd-case-track-shell .sd-arrow.next,
  .application-track-shell .sd-arrow.next {
    right: 12px;
  }
}

@media (max-width: 480px) {
  .solution-detail-hero {
    height: 570px;
  }

  .solution-hero-copy {
    padding-top: 135px;
  }

  .solution-hero-copy h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .sd-gallery-grid {
    grid-template-columns: 1fr;
  }

  .sd-media-card,
  .sd-case-grid article {
    height: 430px;
  }

  .sd-case-grid article > div {
    right: 38px;
    bottom: 40px;
    left: 38px;
  }
}
