@font-face {
  font-family: 'Lato';
  src: url('/fonts/LatoLatin-Regular.eot'); /* IE9 Compat Modes */
  src: url('/fonts/LatoLatin-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/LatoLatin-Regular.woff2') format('woff2'), /* Modern Browsers */
       url('/fonts/LatoLatin-Regular.woff') format('woff'), /* Modern Browsers */
       url('/fonts/LatoLatin-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: 'Lato';
  src: url('/fonts/LatoLatin-Bold.eot'); /* IE9 Compat Modes */
  src: url('/fonts/LatoLatin-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/LatoLatin-Bold.woff2') format('woff2'), /* Modern Browsers */
       url('/fonts/LatoLatin-Bold.woff') format('woff'), /* Modern Browsers */
       url('/fonts/LatoLatin-Bold.ttf') format('truetype');
  font-style: normal;
  font-weight: bold;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: 'DINRoundPro';
  src: url('/fonts/DINRoundPro.eot');
  src: url('/fonts/DINRoundPro.eot?#iefix') format('embedded-opentype'),
      url('/fonts/DINRoundPro.woff2') format('woff2'),
      url('/fonts/DINRoundPro.woff') format('woff'),
      url('/fonts/DINRoundPro.ttf') format('truetype'),
      url('/fonts/DINRoundPro.svg#DINRoundPro') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: 'DINRoundPro';
  src: url('/fonts/DINRoundPro-Medi.eot');
  src: url('/fonts/DINRoundPro-Medi.eot?#iefix') format('embedded-opentype'),
      url('/fonts/DINRoundPro-Medi.woff2') format('woff2'),
      url('/fonts/DINRoundPro-Medi.woff') format('woff'),
      url('/fonts/DINRoundPro-Medi.ttf') format('truetype'),
      url('/fonts/DINRoundPro-Medi.svg#DINRoundPro-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
}

body {
  font-family: Lato,"Segoe UI",Roboto,"Helvetica Neue",-apple-system,BlinkMacSystemFont,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  background-color:#12141F;
}

.navbar, label, h1, h2, h3, h4 {
  font-family: DINRoundPro,"Segoe UI",Roboto,"Helvetica Neue",-apple-system,BlinkMacSystemFont,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

h2 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}

h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  font-size:2rem;
}

a {
  color:#9c74c1;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color:#c09de2;
}

p.muted {
  color: #a7a7a7;
}

section {
  background-color:#161927;
}

section.dark {
  background-color:#12141F;
}

section {
  padding: 50px 0;
}

@media (min-width: 576px) {
  section {
    padding: 150px 0;
  }
}

.button {
  background-color:#6b30a2;
  color:#ddd;
  padding: 8px 8px 8px 24px;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  transition: all 300ms ease-in-out;
  border: none;
}

.button span {
  display: inline-block;
  stroke: #000;
  background-color: #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
}

.button svg {
  margin-top: 25%;
  transition: transform 300ms ease-in-out;
}

.button:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 1px 1px 24px #6b30a2cc;
  color:#fff;
}

.button:not(:disabled):hover span {
  background-color: #fff;
}

.button:not(:disabled):hover svg {
  transform: rotate(45deg);
}

.button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.button-outline {
  color: var(--bs-body-color);
  border: 2px solid var(--bs-body-color);
  stroke: var(--bs-body-color);
  border-radius: 2rem;
  padding: 12px 16px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
}

.button-outline:not(:disabled):hover {
  border-color:#c09de2;
  stroke: #c09de2;
}

.button-outline svg {
  margin: 0px 0px 3px 0.75rem;
  transition: transform 0.3s ease-in-out;
}

.button-outline:not(:disabled):hover svg {
  transform: rotate(45deg);
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-width: 1px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0) 100%);
  border-style: solid;
  /* Create a wrapper to handle the border-radius */
  position: relative;
  border: none;
  padding: 0px 16px 0px 6px;
}

.badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 99px;
  border: 1px solid transparent;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.1) 100%) border-box;
  -webkit-mask:
     linear-gradient(#fff 0 0) padding-box,
     linear-gradient(#fff 0 0);
  mask:
     linear-gradient(#fff 0 0) padding-box,
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.4rem 0.2rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  /* background-color: #12141F; */
  /* border: 1px solid #999; */
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  /* border-radius: 0.4rem; */
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
  outline: none;
  border-color: #c09de2;
  outline: 1px solid #c09de2;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }

  h4 {
    font-size: 1.6rem;
  }
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInDown {
  0% {
     opacity: 0;
     transform: translateY(-20px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@keyframes fadeInUp {
  0% {
     opacity: 0;
     transform: translateY(20px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

div.marquee-container {
  display: inline-block;
  overflow: hidden;
  height: 1.5em;
  margin:0;
  padding:0;
  transform: translateY(0.4em);
}

ul.marquee {
  padding: 0;
  margin: 0;
  display: inline-block;
  transform: translateY(-0em);
}

ul.marquee > li {
  height:1em;
  margin:0px;
  padding:0px;
  margin-bottom: 1em;
}

.marquee {
  animation: marquee-animation 30s infinite;
}

@keyframes marquee-animation {
  0% {margin-top: 0;}
  5% {margin-top: 0;}
  10% {margin-top: 0em;}
  15% {margin-top: -2em;}
  20% {margin-top: -2em;}
  25% {margin-top: -2em;}
  30% {margin-top: -4em;}
  35% {margin-top: -4em;}
  40% {margin-top: -4em;}
  45% {margin-top: -6em;}
  50% {margin-top: -6em;}
  55% {margin-top: -6em;}
  60% {margin-top: -4em;}
  65% {margin-top: -4em;}
  70% {margin-top: -4em;}
  75% {margin-top: -2em;}
  80% {margin-top: -2em;}
  85% {margin-top: -2em;}
  90% {margin-top: 0;}
  95% {margin-top: 0;}
  100% {margin-top: 0;}
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.typewriter {
  overflow: hidden;
  white-space: nowrap;
  animation: typewriter 2s steps(40, end) forwards;
}

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

.slide-down {
  animation: slideDown 0.5s ease-out forwards;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

.visible {
  opacity: 1;
  visibility: visible;
}
nav.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  display: flex;
  flex-direction: column;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  padding: 2rem 0;
  background-color: transparent;
  transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

nav.navbar .container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

nav.navbar.navbar-shrink {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

nav.navbar .navbar-brand {
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 2em;
  transition: font-size 0.3s ease-in-out;
  color:#f6f6f6;
}

nav.navbar.navbar-shrink .navbar-brand {
  font-size: 1.25em;
}

nav.navbar .navbar-brand img {
  height: 56px;
  transition: height 0.3s ease-in-out;
}

nav.navbar.navbar-shrink .navbar-brand img {
  height: 48px;
}

nav.navbar .navbar-collapse {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav.navbar ul {
  display: inline-flex;
  gap: 2rem;

  list-style: none;
  margin: 0;
  padding: 0;
}

nav.navbar a {
  color: #f6f6f6;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

nav.navbar a:hover {
  color: #c09de2;
  text-shadow: 0 0 6px #c09de2;
}

nav.navbar a.active {
  text-decoration: underline;
}

nav.navbar #signup svg {
  transition: transform 0.3s ease-in-out;
}

nav.navbar #signup:hover svg {
  transform: rotate(45deg);
}

nav.navbar .navbar-collapse.right {
  justify-content: flex-end;
  margin-right: 2rem;
}

nav.navbar .navbar-toggler {
  display: none;
  background-color: transparent;
  border: none;
  stroke: #fff;
}

#signup {
  border: 2px solid var(--bs-body-color);
  stroke: var(--bs-body-color);
  border-radius: 2rem;
  padding: 12px 16px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 992px) {
  nav.navbar {
    padding: 0.5rem 0;
  }

  nav.navbar .navbar-brand {
    flex: 1;
    justify-content: flex-start;
  }

  nav.navbar .navbar-toggler {
    display: none;
  }

  nav.navbar .navbar-collapse {
    display: none;
  }

  #signup {
    display: flex;
    padding: 6px 16px;
  }

  .navbar-shrink #signup {
    padding: 3px 16px;
    font-size: 1.1rem;
  }

  nav.navbar.navbar-shrink {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

@media (min-width: 992px) {
  .navbar-shrink #signup {
    padding: 6px 16px;
  }

  #signup:hover {
    border-color:#c09de2;
    stroke: #c09de2;
    /* transform: translateY(-1px); */
  }
}

@media (max-height: 768px) {
  nav.navbar a {
    font-size: 1.1em;
  }

  nav.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  nav.navbar.navbar-shrink {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  nav.navbar .navbar-brand img {
    height: 48px;
    transition: height 0.3s ease-in-out;
  }

  nav.navbar.navbar-shrink .navbar-brand img {
    height: 40px;
  }

  #signup {
    padding: 6px 16px;
  }

  .navbar-shrink #signup {
    padding: 4px 16px;
  }
}


@media (max-height: 540px) {
  nav.navbar a {
    font-size: 1em;
  }

  nav.navbar .container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  nav.navbar.navbar-shrink .container {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  nav.navbar .navbar-brand img {
    height: 40px;
    transition: height 0.3s ease-in-out;
  }

  nav.navbar.navbar-shrink .navbar-brand img {
    height: 36px;
  }

  #signup {
    padding: 4px 16px;
  }

  .navbar-shrink #signup {
    padding: 2px 16px;
  }
}

header {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: center;
  /* compensate for navbar */
  padding-top: 10rem;
}

#landing-header {
  min-height: 95vh;
  padding-top: 8rem;
}

header .content {
  text-align: center;
}

header h1 {
  font-size: 5rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

header h2 {
  font-size: 1.7rem;
  margin-bottom: 4rem;
}

#header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #161927;
  overflow: hidden;
  z-index: -1;
}

.decorative-blur {
  opacity: 0.8;
  transform-style: preserve-3d;
  will-change: transform, filter;
}

#blur-left-inner {
  position: absolute;
  width: 5%;
  top: -100px;
  bottom: 15%;
  left: 15%;
  background: linear-gradient(135deg, #9655D3, #6B30A2);
  filter: blur(120px);
  transform: rotate(-30deg) translateZ(0);
}

#blur-right-inner {
  position: absolute;
  width: 5%;
  top: -100px;
  bottom: 15%;
  right: 15%;
  background: linear-gradient(135deg, #9655D3, #6B30A2);
  filter: blur(120px);
  transform: rotate(30deg) translateZ(0);
}

#blur-left-outer {
  position: absolute;
  width: 10%;
  top: -20%;
  bottom: 15%;
  left: 0%;
  background: #6676BA;
  filter: blur(180px);
  transform: rotate(-30deg) translateZ(0);
}

#blur-right-outer {
  position: absolute;
  width: 10%;
  top: -20%;
  bottom: 15%;
  right: 0%;
  background: #6676BA;
  filter: blur(180px);
  transform: rotate(30deg) translateZ(0);
}

#blur-left-dark {
  position: absolute;
  width: 10%;
  top: -100px;
  bottom: 25%;
  left: 25%;
  transform: rotate(-31deg) translateZ(0);
  background: #12141F;
  filter: blur(180px);
}

#blur-right-dark {
  position: absolute;
  width: 10%;
  top: -100px;
  bottom: 25%;
  right: 25%;
  transform: rotate(31deg) translateZ(0);
  background: #12141F;
  filter: blur(180px);
}

#blur-middle {
  position: absolute;
  top: -100px;
  left: 0px;
  right: 0px;
  bottom: 15%;
  background: #6676BA;
  filter: blur(80px);
  transform: translateZ(0);
  mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 10%, transparent 70%);
}

#blur-bottom {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0%;
  height: 75%;
  /* filter: blur(0px); */
  /* transform: translateZ(0); */
  /* background: linear-gradient(to bottom, #6b30a2, #000000, #12141F); */
  background: linear-gradient(to bottom, #12141F00, #12141FFF 95%);
  opacity: 1;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 3.5rem;
  }

  header h2 {
    font-size: 1.7rem;
  }
}
footer {
  background-color:#12141F;
  padding-top: 6rem;
  overflow: hidden;
}

footer .bottom {
  border-top: 1.5px solid #162137;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 10rem;
}

footer .bottom div:last-child {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

footer h4 {
  margin-bottom: 1rem;
  color: #a7a7a7;
  font-size: 1.2rem;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  font-size: 1.1rem;
}

footer .container {
  position: relative;
}

footer .decorative-blur {
  position: absolute;
  width: 75px;
  height: 100px;
  border-radius: 50%;
  z-index: 2;
  filter: blur(60px);
}

footer #ellipse-left {
  top: 15%;
  left: 0;
  width: 100px;
  height: 100px;
  background-color: #6b30a2;
  filter: blur(45px);
  z-index: 0;
}

footer #logo-purple {
  top: 0;
  right: 20%;
  background-color: #6b30a2;
}

footer #logo-blue {
  top: 0;
  right: 10%;
  background-color: #6676ba;
}

footer #logo-white {
  top: 0;
  right: 0%;
  background-color: #a7a7a7;
}

footer .row {
  position: relative;
  z-index: 1;
}

footer img {
  position: relative;
  opacity: 0.33;
  z-index: 0;
  max-width: min(360px, 100%);
}

@media (max-width: 576px) {
  footer .bottom {
    margin-top: 3rem;
  }

  footer .bottom div:first-child {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  footer .bottom div:last-child {
    display: flex;
    justify-content: space-between;
  }

  footer .decorative-blur {
    width: 50px;
    height: 50px;
    filter: blur(30px);
  }

  footer #logo-purple {
    top: auto;
    bottom: 30%;
    right: 75%;
  }

  footer #logo-blue {
    top: auto;
    bottom: 40%;
    right: 50%;
  }

  footer #logo-white {
    top: auto;
    bottom: 35%;
    right: 20%;
  }
}

#what-we-do .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#what-we-do .icon {
  width: 80%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10%;
  margin-bottom: -10%;
}

#what-we-do .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#what-we-do p {
  margin: 0 15%;
}

@media (max-width: 768px) {
  #what-we-do p {
    margin: 0 0;
  }
}

#deployment h2 {
  margin-bottom: 6rem;
}

#deployment .center,
#integrations .center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#deployment-icon-bg {
  background:
    linear-gradient(45deg, rgba(100, 56, 157, 0) 0%, rgba(100, 56, 157, 1) 50%, rgba(100, 56, 157, 0) 100%),
    linear-gradient(0deg, rgba(100, 56, 157, 0) 0%, rgba(100, 56, 157, 1) 50%, rgba(100, 56, 157, 0) 100%);
  border-radius: 2rem;
}

#deployment-icon-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-top: 12.5%;
  margin-bottom: -12.5%;
}

#deployment ul {
  padding: 0;
}

#deployment li {
  list-style: none;
  border-bottom: 1px solid #91919160;
  margin-top: 2rem;
}

#deployment li:last-child {
  border-bottom: none;
}

#deployment .vertical-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

#deployment .ms-4 {
  margin-left: 4rem !important;
}

#deployment .mt-2 {
  margin-top: 2rem !important;
}

#contact .gradient-bg {
  background: radial-gradient(circle at bottom right, #12141f 60%, #6b30a2 100%);
  border-radius: 2rem;
  padding: 4rem 4rem 10rem 4rem;
}

#contact form {
  margin-right: 2rem;
}

#contact form input[type='text'],
#contact form input[type='email'],
#contact form textarea {
  display: block;
  width: 100%;
  border-radius: 0;
  border: 0px;
  padding: 0.75rem 0.5rem;

  background-color: transparent;
  color: #fff;
}

#contact form textarea {
  border-width: 0 0 1px 0;
  border-color: #a7a7a7;
}

#contact form input[type='text']:focus,
#contact form input[type='email']:focus,
#contact form textarea:focus {
  outline: none;
  border-color: #c09de2;
  outline: 1px solid #c09de2;
}

#contact form textarea {
  resize: vertical;
}

@media (max-width: 768px) {
  #contact .col-lg-5 {
    order: -1;
  }

  #contact .gradient-bg {
    padding: 2rem 1rem;
  }
}

.form-group {
  margin-bottom: 1rem;
  border-bottom: 1px solid #a7a7a7;
}

.form-group .col-md-2 {
  align-self: center;
}

.interest-pills {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.interest-pills .pill {
  padding: 0.33rem 1rem;
  border: 1px solid #a7a7a7;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ccc;
  display: inline-flex;
  align-items: center;
}

.interest-pills .pill input[type='checkbox'] {
  display: none;
}

.interest-pills .pill:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.interest-pills .pill input[type='checkbox']:checked + span {
  color: #fff;
}

.interest-pills .pill input[type='checkbox']:checked ~ span {
  color: #fff;
}

.interest-pills .pill input[type='checkbox']:checked {
  background-color: #6b30a2;
  border-color: #6b30a2;
}

.interest-pills .pill:has(input[type='checkbox']:checked) {
  background-color: #6b30a2;
  border-color: #c09de2;
}

.text-danger {
  color: #d85d5d;
}
.text-success {
  color: #5d885d;
}

#about-us .circle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 2rem;
  position: relative;
  z-index: 1;
}

#about-us .circle {
  display: flex;
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1;
}

#about-us .circle.dashed {
  border: 1px dashed rgba(255, 255, 255, 0.5);
}

#about-us .circle:has(img),
#about-us .circle:has(svg) {
  background: #ffffff99;
}

#about-us .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 5%;
}

#about-us .circle svg {
  width: 50%;
  height: 50%;
  aspect-ratio: 1;
  margin-top: 25%;
  margin-left: 25%;
  fill: #6b30a2;
}

#about-us #ellipse-middle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #6b30a280 0%, #12141f50 66%);
  border-radius: 2rem;
  padding: 4rem 4rem 10rem 4rem;
  z-index: 0;
}

@media (max-width: 768px) {
  #about-us .col-md-6:first-child {
    order: 2;
  }
  #about-us .circle-grid {
    margin: 0;
  }
}

#onboarding .solution-icon-bg {
  background: linear-gradient(315deg, #6b30a2 0%, #ffffff 100%);
  border-radius: 2rem;
  padding: 2rem;
}

#onboarding .solution-icon-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#onboarding .solution-icon-glow {
  background: linear-gradient(
    315deg,
    rgba(100, 56, 157, 0) 0%,
    rgba(100, 56, 157, 0.75) 25%,
    rgba(100, 56, 157, 0) 100%
  );
  border-radius: 2rem;
  padding: 2.75rem;
}

#onboarding h4 {
  margin: 1rem 0 1rem 0;
}

#onboarding p {
  margin-bottom: 2rem;
}

#onboarding .solution-row {
  margin-top: 6rem;
  align-items: center;
}

#onboarding .solution {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}

#onboarding .col-md-2 {
  display: flex;
  justify-content: center;
}

#onboarding .col-md-2 svg {
  z-index: 2;
  background-color: #12141f;
}

#onboarding .solution-row > div:first-child .solution-icon-glow {
  background: linear-gradient(
    45deg,
    rgba(100, 56, 157, 0) 0%,
    rgba(100, 56, 157, 0.75) 25%,
    rgba(100, 56, 157, 0) 100%
  );
}

@media (max-width: 768px) {
  #onboarding .connecting-line {
    display: none;
  }

  #onboarding .col-md-2 svg {
    display: none;
  }

  #onboarding .solution-row:nth-child(3) .col-md-5:first-child {
    order: 2;
  }

  #onboarding .solution div > svg {
    margin-top: -75px !important;
  }

  #onboarding .button-outline {
    margin-bottom: 2rem;
  }
}

#integrations {
  overflow: hidden;
  position: relative;
}

#integrations .integration-card {
  background: linear-gradient(30deg, #12141f, #303850, #12141f);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 1;
  width: 100%;
  max-width: 200px;
  margin: 0;
  padding: 0 1rem;

  border: 1px solid #ffffff30;

  font-size: 2rem;
  font-weight: bold;

  font-family:
    DINRoundPro,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    -apple-system,
    BlinkMacSystemFont,
    Arial,
    'Noto Sans',
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol',
    'Noto Color Emoji';

  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.5);
}

#integration-spinner {
  position: relative;
  min-height: 250px;
  margin: 4rem 0;
}

#integration-spinner .integration-card {
  position: absolute;
  transition: all 0.5s ease;
  transform-origin: center center;
}

#integration-spinner-container {
  position: relative;
  z-index: 1;
}

#integrations .grid-background {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 60%;
  height: 64%;
  z-index: 0;
}

#integrations .container {
  position: relative;
  z-index: 1;
}

#integration-blur-bg {
  position: absolute;
  top: 30%;
  left: 30%;
  width: 40%;
  height: 40%;
  border-radius: 50%;

  background: #6b30a2;
  filter: blur(80px);
}

#integrations #integration-blur-card {
  position: absolute;
  top: 11%;
  left: 44%;
  background: transparent;
  border: 0;
  pointer-events: none;
  opacity: 0.5;
  box-shadow: none;
}

#integration-blur-purple {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #8020d9;
  filter: blur(32px);
}

#integration-blur-white {
  position: absolute;
  top: 80%;
  left: 10%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f3e9fb;
  filter: blur(32px);
}

#integration-blur-full {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #ffffff;
  filter: blur(94px);
}

#industries-cards {
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
  gap: 2rem;
  padding: 2rem 2rem;
}

#industries-cards .industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#industries-cards .industry-card img {
  border-radius: 1rem;
  border: 1px solid #ffffff20;
}

#industries-cards .industry-card h3 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

#founder {
  position: relative;
}

#founder-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

#founder-blur-inner {
  position: absolute;
  width: 10%;
  top: 20%;
  bottom: 20%;
  right: 40%;
  background: linear-gradient(135deg, #9655d3, #6b30a2);
  filter: blur(120px);
  transform: rotate(50deg);
}

#founder-blur-outer {
  position: absolute;
  width: 10%;
  top: 20%;
  bottom: 20%;
  right: 45%;
  background: #a7a7a7;
  filter: blur(120px);
  transform: rotate(50deg);
}

#founder {
  position: relative;
  padding-bottom: 0;
}

#founder .container {
  position: relative;
  z-index: 1;
}

#founder-headshot {
  position:relative;
  display:flex;
  align-items:flex-end;
}

#founder-headshot > div {
  position:absolute;
  top:4rem;
  right:0.5rem;
  z-index:1;
  text-align:right;
}

@media (max-width: 768px) {
  #founder-headshot > div  {
    top: 1rem;
    left: 1rem;
    text-align: left;
    max-width: 128px;
  }

  #founder-headshot img {
    margin-left: 1rem;
  }
}

#founder-headshot img {
  max-width:100%;
  height:auto;
}

#examples .card {
  background-color: #252a41;
  padding: 12px;
}

#examples .card {
  border-radius: 0.75rem;
}

#examples .card div {
  border-radius: 0.5rem;
}

#examples .card-header {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-end;
}

#examples .card-header .card-icon {
  background-color: #3a3f54;
  padding: 8px;
}

#examples .card-header h4 {
  font-size: 1.2rem;
}

#examples .card-body {
  margin-top: 1rem;
  padding: 12px;
  background-color: #2b324e;
}

#examples .card-body p {
  margin: 0px;
}

#examples .cards {
  display: flex;
  flex-direction: column;
}

#examples .card.generated {
  background: linear-gradient(180deg, #64389d, #311c4f);
}

#examples .card.generated .card-icon {
  background-color: #704aa4;
}

#examples .card.generated .card-body {
  background-color: #2d1444;
}

#examples .cards > svg {
  margin-left: 3rem;
  margin-bottom: -6px;
  z-index: 1;
}

#examples svg.link {
  opacity: 0;
  transition: all 1s ease;
}

.grid-background {
  background-image:
    linear-gradient(to right, rgba(128, 32, 217, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(128, 32, 217, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: center center;
}

#emailHelp {
  font-size: 0.85rem;
  margin: 1rem 0 0 0;
}

.blog-image {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: #ffffffa0;
  border: 2px solid #6b30a2;
}

.blog-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

body.blog-post section {
  padding: 4rem 0;
}

body.blog-post h3 {
  margin-top: 3rem;
}