/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

html {
  font-size: 13px;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

:root {
  /* brand */
  --blue: #2360a5;
  --blue2: #1a4a86;
  --blue-lt: #ebf3fd;
  --blue-glow: rgba(35, 96, 165, 0.22);
  --orange: #ff5f2e;
  --orange2: #e84e1e;
  --orange-lt: #fff0eb;
  --orange-glow: rgba(255, 95, 46, 0.28);
  --teal: #00cca8;
  --teal2: #00a989;
  --teal-lt: #e5faf6;
  --neon: #00ffd0;
  --neon2: #7c5cfc;
  /* surfaces */
  --ink: #0c1220;
  --ink2: #141d2e;
  --ink3: #1d2840;
  --white: #ffffff;
  --off: #f6f9ff;
  --off2: #eef3fc;
  --muted: #64748b;
  --muted2: #8b9cb8;
  /* glass */
  --glass: rgba(255, 255, 255, 0.7);
  --glass-dk: rgba(255, 255, 255, 0.06);
  --border-lt: rgba(35, 96, 165, 0.13);
  --border-dk: rgba(255, 255, 255, 0.1);
  /* type */
  --font: "Plus Jakarta Sans", sans-serif;
  --mono: "DM Mono", monospace;
  /* radii */
  --r: 14px;
  --rl: 22px;
  --rxl: 32px;
}

.dtPageContainer {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.dtPageContainer span,
.dtPageContainer p {
  margin: 0px;
  padding: 0px;
}

.dtPageContainer {
  color: rgb(38, 53, 70);
}

.dtHeroSection {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 30px auto;
  padding: 20px;
  align-items: center;
}

/*──────────────────────────────────────
  FOG + BACKGROUND BLOBS
──────────────────────────────────────*/
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: blob-float 16s ease-in-out infinite alternate;
}
@keyframes blob-float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -15px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 20px) scale(0.97);
  }
  100% {
    transform: translate(10px, 10px) scale(1.03);
  }
}

@media (max-width: 1100px) {
  .dtHeroSection {
    flex-direction: column;
  }

  .dtHeroSectionLeft {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

.dtHeroSectionLeft {
  width: 100%;
  max-width: 450px;
}

.dtHeroSectionTitle {
  font-size: 56px;
  font-weight: 700;
  font-style: normal;
  color: rgb(38, 53, 70);
  line-height: 56px;
  letter-spacing: -0.046em;
}

.dtHeroSectionSubtitle {
  font-size: 37px;
  font-weight: 700;
  line-height: 37px;
  letter-spacing: -0.046em;
  font-style: normal;
  color: rgb(13, 131, 141);
  margin-top: 10px;
}

.dtHeroSectionTitle span {
  display: block;
}

.dtHeroSectionLeft img {
  width: 100%;
  max-width: 250px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dtHeroSectionRight {
  display: block;
  position: relative;
}

.dtHeroSectionRightBg {
  width: 100%;
  max-width: 750px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1;
}

.dtHeroSectionRightTablet {
  display: inline-block;
  position: absolute;
  z-index: 9;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 480px;
  height: 270px;
}

.dtHeroSectionRightTabletEmpty {
  display: block;
  position: absolute;
  width: 100%;
  z-index: 9;
  left: 0px;
  top: 0px;
}

.dtHeroSectionRightTabletScreen01 {
  display: block;
  position: absolute;
  width: calc(100% - 20px);
  z-index: 1;
  left: 10px;
  top: 10px;
  max-height: 260px;
  border-radius: 10px;
}

.dtHeroSectionRightTablet {
  transition: transform 0.25s ease;
}

.dtHeroSectionRightTablet:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.tablet-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 10;
  pointer-events: none;
}

.screens-wrapper {
  position: absolute;
  left: 15px;
  top: 10px;
  right: 15px;
  bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: white;
}

.screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.screen-1 {
  animation: slideshow 12s infinite;
}
.screen-2 {
  animation: slideshow 12s infinite 4s;
}
.screen-3 {
  animation: slideshow 12s infinite 8s;
}

@keyframes slideshow {
  0% {
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 500px) {
  .dtHeroSectionRightTablet {
    max-width: 320px;
    height: 180px;
  }
  .screens-wrapper {
    right: 10px;
    left: 10px;
    bottom: 5px;
    top: 5px;
  }
}

.dtHeroSectionCtaBtn {
  display: inline-block;
  position: relative;
  margin-top: 50px;
  border-radius: 40px;
  padding: 15px 50px;
  font-size: 19px;
  font-weight: 600;
  color: black;
  text-transform: uppercase;
  background: rgb(255, 190, 43);
}

.dtHeroSectionCtaBtn:hover {
  background: rgb(255, 190, 43);
  color: black;
  text-decoration: none;
}

.dtFvtSection {
  display: block;
  position: relative;
  background: rgb(235, 241, 248);
  padding: 60px 0px;
}

.dtFvtSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: rgb(235, 241, 248);
}

.dtFvtSectionR1 {
  color: rgb(38, 53, 70);
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 60px;
}

.dtFvtSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtFvtSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtFvtSectionCols {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 800px) {
  .dtFvtSectionCols {
    flex-direction: column;
    align-items: center;
  }
}

.dtFvtSectionCol {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  max-width: 330px;
  flex-direction: column;
  align-items: center;
}

.dtFvtSectionColIcon {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dtFvtSectionColTitle {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  padding: 10px 0px;
  font-weight: bold;
}

.dtFvtSectionColSubtitle {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}

.dtHiwSection {
  display: block;
  position: relative;
  background: white;
  padding: 60px 0px;
}

.dtHiwSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: white;
}

.dtHiwSectionR1 {
  color: rgb(38, 53, 70);
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 60px;
}

.dtHiwSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtHiwSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtHiwSectionCols {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
}

.dtHiwSectionColIcon {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 800px) {
  .dtHiwSectionCols {
    flex-direction: column;
    align-items: center;
  }
}

.dtHiwSectionCol {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  max-width: 330px;
  flex-direction: column;
  align-items: center;
}

.dtHiwSectionColTitle {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  padding: 10px 0px;
  font-weight: bold;
}

.dtHiwSectionColSubtitle {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}

.dtPfSection {
  display: block;
  position: relative;
  background: rgb(235, 241, 248);
  padding: 60px 0px;
}

.dtPfSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: rgb(235, 241, 248);
}

.dtPfSectionR1 {
  color: rgb(38, 53, 70);
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 60px;
}

.dtPfSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtPfSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtPfSectionCols {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 800px) {
  .dtPfSectionCols {
    flex-direction: column;
    align-items: center;
  }
}

.dtPfSectionCol {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  max-width: 450px;
  flex-direction: column;
  align-items: center;
}

.dtPfSectionColIcon {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dtPfSectionColTitle {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  padding: 10px 0px;
  font-weight: bold;
}

.dtPfSectionColSubtitle {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}

.dtPfSectionSubtitle2 {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

.dtPfSectionSubtitle3 {
  font-size: 24px;
  line-height: 24px;
  margin: 20px 0px;
  font-weight: bold;
  text-align: center;
}

.dtPfSectionCols2 {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: center;
}

@media (max-width: 800px) {
  .dtPfSectionCols2 {
    flex-direction: column;
    align-items: center;
  }
}

.dtPfSectionCols2 .dtPfSectionCol {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  max-width: 450px;
  flex-direction: column;
  align-items: center;
}

.dtPfSectionCols2 .dtPfSectionColSubtitle {
  text-align: left;
}

.dtDfdSection {
  display: block;
  position: relative;
  background: white;
  padding: 60px 0px;
}

.dtDfdSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: white;
}

.dtDfdSectionR1 {
  color: rgb(38, 53, 70);
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 60px;
}

.dtDfdSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtDfdSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtDfdSectionCols {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
}

.dtDfdSectionColIcon {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 800px) {
  .dtDfdSectionCols {
    flex-direction: column;
    align-items: center;
  }
}

.dtDfdSectionCol {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  max-width: 330px;
  flex-direction: column;
  align-items: center;
}

.dtDfdSectionColTitle {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  padding: 10px 0px;
  font-weight: bold;
}

.dtDfdSectionColSubtitle {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}

.dtDfdSectionSubtitle2 {
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  margin: 10px;
}

.dtCapSection {
  display: block;
  position: relative;
  background: rgb(235, 241, 248);
  padding: 60px 0px;
}

.dtCapSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: rgb(235, 241, 248);
}

.dtCapSectionR1 {
  color: rgb(38, 53, 70);
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 60px;
}

.dtCapSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtCapSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtCapSectionCols {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-around;
}

@media (max-width: 800px) {
  .dtCapSectionCols {
    flex-direction: column;
    align-items: center;
  }
}

.dtCapSectionCol {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  max-width: 500px;
  flex-direction: column;
  align-items: center;
}

.dtCapSectionColIcon {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 20px;
}

.dtCapSectionColTitle {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  padding: 10px 0px;
  font-weight: bold;
}

.dtCapSectionColSubtitle {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}

.dtCasSection {
  display: block;
  position: relative;
  background: white;
  padding: 60px 0px;
}

.dtCasSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: white;
}

.dtCasSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtCasSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtCasSectionExamples {
  display: block;
  position: relative;
  margin-bottom: 20px;
}

.dtCasSectionExample {
  display: block;
  position: relative;
  margin-bottom: 20px;
}

.dtCasSectionExampleTitle {
  display: block;
  position: relative;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.dtListSection {
  display: block;
  position: relative;
  background: rgb(235, 241, 248);
  padding: 60px 0px;
}

.dtListSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: rgb(235, 241, 248);
}

.dtListSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtListSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtListSectionSubtitle2 {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
  font-weight: bold;
}

.dtListSectionCtaBtn {
  display: inline-block;
  position: relative;
  margin: 30px auto;
  border-radius: 40px;
  padding: 15px 50px;
  font-size: 19px;
  font-weight: 600;
  color: black;
  text-transform: uppercase;
  background: rgb(255, 190, 43);
}

.dtListSectionCtaBtn:hover {
  background: rgb(255, 190, 43);
  color: black;
  text-decoration: none;
}

.dtGarSection {
  display: block;
  position: relative;
  background: white;
  padding: 60px 0px;
}

.dtGarSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: white;
}

.dtGarSectionTitle {
  display: inline-block;
  position: relative;
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 60px;
}

.dtGarSectionTitleDivider {
  display: block;
  position: absolute;
  width: 80%;
}

.dtGarSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.dtGarSectionSubtitle2 {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtGarInnerSection {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
}

.dtGarInnerSectionLeft {
  width: 100%;
  max-width: 430px;
  flex-shrink: 0;
  padding-right: 20px;
}

.dtGarInnerSectionRight {
  background: #ebf1f8;
  border-radius: 30px;
  padding: 20px;
}

.dtGarInnerSectionRight p {
  margin-bottom: 20px;
  font-size: 23px;
  line-height: 28px;
}

@media (max-width: 1000px) {
  .dtGarInnerSection {
    flex-direction: column;
  }

  .dtGarInnerSectionLeft {
    max-width: 300px;
    padding-right: 0px;
  }
}

.dtFeatSection {
  display: block;
  position: relative;
  background: rgb(235, 241, 248);
  padding: 60px 0px;
}

.dtFeatSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: rgb(235, 241, 248);
}

.dtFeatSectionR1 {
  color: rgb(38, 53, 70);
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 60px;
}

.dtFeatSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtFeatSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtFeatSectionCols {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 800px) {
  .dtFeatSectionCols {
    flex-direction: column;
    align-items: center;
  }
}

.dtFeatSectionCol {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  max-width: 330px;
  flex-direction: column;
  align-items: center;
}

.dtFeatSectionColIcon {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100px;
  width: 100%;
}

.dtFeatSectionColTitle {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  padding: 10px 0px;
  font-weight: bold;
}

.dtFeatSectionColSubtitle {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}

.dtFeatSectionTitle2 {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  padding: 10px 0px;
  margin-top: 20px;
  font-weight: bold;
}

.dtFeatSectionSubtitle2 {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}

.dtFeatSectionSubtitle3 {
  text-align: center;
  font-size: 21px;
  line-height: 21px;
  padding: 10px 0px;
}

.dtPrsSection {
  display: block;
  position: relative;
  background: white;
  padding: 60px 0px;
}

.dtPrsSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: white;
}

.dtPrsSectionTitle {
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 30px;
}

.dtPrsSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtPrsSectionSubtitle2 {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
  margin-top: 30px;
  font-weight: bold;
  text-align: center;
}

.dtSupSection {
  display: block;
  position: relative;
  background: rgb(235, 241, 248);
  padding: 60px 0px;
}

.dtSupSectionInner {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 20px;
  margin: 0px auto;
  background: rgb(235, 241, 248);
}

.dtSupSectionTitle {
  font-size: 43px;
  font-weight: bold;
  line-height: 51px;
  margin-bottom: 30px;
}

.dtSupSectionSubtitle {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.dtSupSectionInnerContainer {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
}

.dtSupSectionInnerLeft {
  padding-right: 40px;
}

@media (max-width: 1200px) {
  .dtSupSectionInnerContainer {
    flex-direction: column;
  }

  .dtSupSectionInnerLeft {
    padding-right: 0px;
  }
}

.dtSupSectionInnerRight {
  max-width: 500px;
  width: 100%;
  flex-shrink: 0;
}

.dtSupSectionSubtitle p {
  margin-bottom: 20px;
}

.dtSupSectionInnerRight img {
  border-radius: 20px;
}

.dtSupSectionTitle2 {
  font-size: 26px;
  font-weight: bold;
  line-height: 26px;
  margin-bottom: 20px;
}

.dtSupSectionSubtitle2 {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 40px;
}

.supPricing {
  max-width: 100% !important;
}

.dtCasSectionMain {
  display: block;
  position: relative;
}

.dtCasSectionMainLeft {
  display: inline-block;
  position: relative;
  max-width: calc(100% - 400px);
  width: 100%;
  float: left;
}

.dtCasSectionMainRight {
  display: inline-block;
  position: relative;
  max-width: 400px;
  padding-left: 30px;
  width: 100%;
}

.dtCasSectionMainRight h3 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 30px;
  text-align: center;
}

.dtCasSectionMain:after {
  display: block;
  position: relative;
  content: " ";
  clear: both;
}

@media (max-width: 1000px) {
  .dtCasSectionMainLeft {
    float: none;
    max-width: 1000px;
  }

  .dtCasSectionMainRight {
    max-width: 1000px;
  }
}

.dt-hero-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgb(99 99 99 / 85%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dt-hero-popup-overlay.active {
  display: flex;
  opacity: 1;
}

.dt-hero-popup-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.dt-hero-popup-video-wrapper {
  width: 100%;
  height: 100%;
}

.dt-hero-popup-close {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 44px;
  height: 44px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.dt-hero-popup-close:hover {
  background: #222;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .dt-hero-popup-content {
    width: 96%;
    border-radius: 12px;
  }

  .dt-hero-popup-close {
    width: 38px;
    height: 38px;
    font-size: 24px;
    display: none;
  }
}

/*══════════════════════════════════════
  S5 — AI / MCP
══════════════════════════════════════*/
#ai {
  padding: 120px 20px;
  background: var(--ink);
}
/* animated grid */
.ai-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(0, 255, 208, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 255, 208, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: grid-move 25s linear infinite;
}
@keyframes grid-move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 64px 64px;
  }
}
#ai .blob-a {
  width: 700px;
  height: 700px;
  background: rgba(0, 255, 208, 0.06);
  top: -200px;
  right: -200px;
  animation-duration: 20s;
}
#ai .blob-b {
  width: 600px;
  height: 600px;
  background: rgba(124, 92, 252, 0.08);
  bottom: -100px;
  left: -100px;
  animation-duration: 16s;
  animation-direction: alternate-reverse;
}

.ai-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 255, 208, 0.07);
  border: 1px solid rgba(0, 255, 208, 0.22);
  color: var(--neon);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 40px;
  margin-bottom: 1.8rem;
}
.ai-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 255, 208, 0.6);
  animation: neon-pulse 2s ease infinite;
}
@keyframes neon-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 208, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 255, 208, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 208, 0);
  }
}

.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ai-left .sec-h {
  color: #fff;
  text-align: left !important;
}
.ai-left .sec-sub {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}
.ai-left strong {
  color: #fff;
}

.mcp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 2rem;
}
.mcp-c {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  padding: 22px;
  transition: all 0.3s;
}
.mcp-c:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 255, 208, 0.18);
  transform: translateY(-3px);
}
.mcp-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.mt-free {
  background: rgba(0, 204, 168, 0.14);
  color: var(--teal);
  border: 1px solid rgba(0, 204, 168, 0.22);
}
.mt-pro {
  background: rgba(255, 95, 46, 0.14);
  color: #ff8060;
  border: 1px solid rgba(255, 95, 46, 0.22);
}
.mcp-c-ico {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.mcp-c h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.mcp-c p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.compat-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.compat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.2s;
}
.compat-pill:hover {
  border-color: rgba(0, 255, 208, 0.3);
  color: var(--neon);
}
.compat-pill span {
  font-size: 1rem;
}

/* terminal */
.terminal {
  background: #080d14;
  border-radius: var(--rl);
  border: 1px solid rgba(0, 255, 208, 0.15);
  box-shadow: 0 0 80px rgba(0, 255, 208, 0.06), 0 24px 64px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.term-hd {
  background: #0d1421;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.term-dots2 {
  display: flex;
  gap: 7px;
}
.term-dots2 span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.td2-r {
  background: #ff5f57;
}
.td2-y {
  background: #febc2e;
}
.td2-g {
  background: #28c840;
}
.term-ttl {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--mono);
  margin-left: 6px;
}
.term-body {
  padding: 22px 22px;
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 2;
  max-height: 380px;
  overflow: hidden;
}
.t-you {
  color: rgba(0, 255, 208, 0.55);
}
.t-cmd {
  color: #e2e8f0;
}
.t-ai {
  color: rgba(255, 255, 255, 0.3);
  display: block;
  padding-left: 4px;
}
.t-val {
  color: var(--neon2);
}
.t-ok {
  color: var(--neon);
}
.t-blink {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: var(--neon);
  vertical-align: text-bottom;
  animation: blink-cur 1.1s steps(1) infinite;
}
@keyframes blink-cur {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.ai-setup-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  background: rgba(0, 255, 208, 0.09);
  border: 1px solid rgba(0, 255, 208, 0.22);
  color: var(--neon);
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.2s;
}
.ai-setup-link:hover {
  background: rgba(0, 255, 208, 0.16);
}

/*──────────────────────────────────────
  SHARED UTILITIES
──────────────────────────────────────*/
.sec-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-lt);
  border: 1px solid rgba(35, 96, 165, 0.18);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 1.2rem;
}
.sec-label.lo {
  color: var(--orange);
  background: var(--orange-lt);
  border-color: rgba(255, 95, 46, 0.18);
}
.sec-label.lt {
  color: var(--teal2);
  background: var(--teal-lt);
  border-color: rgba(0, 169, 137, 0.18);
}
.sec-label.ld {
  color: var(--neon);
  background: rgba(0, 255, 208, 0.08);
  border-color: rgba(0, 255, 208, 0.2);
}
.sec-h {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.sec-h .grad-b {
  background: linear-gradient(120deg, var(--blue) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-h .grad-o {
  background: linear-gradient(120deg, var(--orange) 0%, #ff9d6c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-h .grad-n {
  background: linear-gradient(120deg, var(--neon) 0%, var(--neon2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
  max-width: 580px;
}
.text-center {
  text-align: center;
}
.text-center .sec-sub {
  margin: 0 auto;
}

/* entrance animations */
.up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.2, 0.8, 0.4, 1),
    transform 0.65s cubic-bezier(0.2, 0.8, 0.4, 1);
}
.up.in {
  opacity: 1;
  transform: none;
}
.up.d1 {
  transition-delay: 0.08s;
}
.up.d2 {
  transition-delay: 0.16s;
}
.up.d3 {
  transition-delay: 0.24s;
}
.up.d4 {
  transition-delay: 0.32s;
}
.up.d5 {
  transition-delay: 0.4s;
}
.up.d6 {
  transition-delay: 0.48s;
}
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in.in {
  opacity: 1;
  transform: none;
}
.fade-l {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-l.in {
  opacity: 1;
  transform: none;
}
.fade-r {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-r.in {
  opacity: 1;
  transform: none;
}
@media (max-width: 1024px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feat-banner {
    grid-template-columns: 1fr;
  }
  .ai-layout {
    grid-template-columns: 1fr;
  }
  .int-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .steps-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .steps-row::before {
    display: none;
  }
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
  }
  .hs-item {
    min-width: 130px;
    border-right: none;
    border-bottom: 1px solid rgba(35, 96, 165, 0.1);
  }
  .hs-item:last-child {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .nav-center,
  .side-nav {
    display: none;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .mcp-cards {
    grid-template-columns: 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .int-grid {
    grid-template-columns: 1fr;
  }
  .guarantee-strip {
    flex-direction: column;
    text-align: center;
  }
  .gs-cta {
    margin-left: 0;
  }
  .foot-top {
    grid-template-columns: 1fr;
  }
  .float-btn {
    display: none;
  }
  .shortcode-demo {
    flex-direction: column;
    text-align: center;
  }
  .pricing-grid {
    max-width: 420px;
  }
  .hero-h1 {
    font-size: 3rem;
  }
}
