*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --blue: rgba(49, 97, 255, 1);
  --blue-dark: #3a62d0;
  --blue-light: #e8efff;
  --blue-medium: #d0dfff;
  --purple: rgb(123, 31, 162);
  --violet: rgb(103, 58, 183);
  --pink: rgb(167, 199, 231);
  --dark: rgba(25, 25, 25, 1);
  --dark-soft: #1a1d2b;
  --gray: #6b7280;
  --gray-light: #f5f6fa;
  --white: #ffffff;
  --border: #e5e7eb;
  --bg: rgba(9, 14, 22, 1);
  --surface: #0d1220;
  --border: rgba(255, 255, 255, 0.07);
  --beam-color: #2d6fff;
  --beam-soft: rgba(45, 111, 255, 0.18);
  --beam-core: rgba(200, 220, 255, 0.9);
  --text-primary: #e8edf5;
  --text-muted: #4a5572;
  --text-dim: #2a3148;
  --accent-blue: #3b82f6;
  --accent-teal: #06b6d4;
  --accent-green: #10b981;
  --doc-paper: #f7f8fa;
  --doc-paper2: #eef0f5;
  --doc-shadow: rgba(0, 0, 0, 0.55);
  --data-col: #60a5fa;
  --data-hot: #34d399;
  color-scheme: light dark;
  /* keep this tighter + capped (matches the “small gap” feel) */
  --svc-gap: clamp(12px, 1.2vw, 18px);
  --svc-gap-max: 18px;
  --svc-radius: 26px;
  --svc-pad: clamp(18px, 2.2vw, 34px);
  --svc-h: clamp(400px, 45vh, 400px);
  --svc-top: 35vh;
  --svc-enter: calc(var(--svc-h) + clamp(120px, 18vh, 240px));
  /* card surface tweaks */
  --svc-card-odd: #ffffff;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: 'Roboto', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

/* Restaura cursor nativo em modais e iframes */
.modal,
iframe {
  cursor: auto !important;
}

.modal a,
.modal button {
  cursor: pointer !important;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s,
    background 0.3s;
  transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s,
    background 0.3s;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cursor.hover {
  width: 50px;
  height: 50px;
  background: rgba(75, 123, 245, 0.1);
  border-color: var(--white);
}

/* ===== BUTTON ===== */
.cst-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  padding: 8px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  border: none;
  cursor: none;
  opacity: 0;
  visibility: hidden;
  position: relative;
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.cst-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  z-index: -1;
}

.cst-btn:hover::before {
  opacity: 1;
}

.cst-btn:hover {
  color: var(--white);
}

/* ===== NAVBAR ===== */
nav {
  position: relative;
}

.flowtuate-logo svg {
  max-width: 164px;
}

a picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  align-items: center;
}

nav ul.uk-subnav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul.uk-subnav li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

nav ul.uk-subnav li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.3rem;

  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000ad;
}

.uk-dropdown li a {
  text-transform: none !important;
}

nav ul.uk-subnav li a svg {
  stroke: #000000ad;
}

/* ============================
   Dropdown Geral
============================ */
nav .uk-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition:
    opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
  z-index: 1000;
}

nav .uk-dropdown.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(27px);
  transform: translateY(27px);
}

.cst-language-dp {
  padding: 0;
  width: 64px;
  min-width: 64px !important;
}

.cst-language-dp .uk-dropdown-nav li > a {
  cursor: pointer;
  font-size: 10px !important;
  padding: 7px 25px !important;
  text-align: center !important;
  border-bottom: 1px solid #e2e2e2;
}

.div-vilt-wrapper .uk-subnav > li > a {
  font-weight: 800 !important;
  font-family: Montserrat, sans-serif;
}

.uk-dropdown-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.uk-dropdown-nav li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #111;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.cst-lang-navigation-dtl {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
}

.cst-lang-navigation-dtl.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.div-vilt {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 9999;
}

.div-vilt.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.div-vilt-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1300px;
  margin: auto;
  padding: 0 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 70px;
}

.div-vilt-wrapper .uk-subnav a {
  font-size: 0.7rem;
  font-weight: 800;
  color: #000000ad;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.div-vilt-wrapper .uk-subnav a:hover {
  color: #d30059;
}

.div-vilt-wrapper .uk-subnav a:hover svg {
  stroke: #d30059;
}

.div-vilt-wrapper .uk-dropdown {
  padding: 0;
}

.uk-subnav a.active .uk-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.uk-subnav a .uk-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.div-vilt-wrapper .uk-nav li > a {
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 20px;
  border-bottom: 1px solid #e2e2e2;
  margin: 0;
  width: 100%;
  font-family: Lato, sans-serif;
  color: rgba(34, 35, 36, 0.7) !important;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.div-vilt-wrapper .uk-nav li > a:hover {
  color: #000 !important;
}

.div-vilt-wrapper .uk-subnav > * {
  padding-left: 0px;
}

.div-vilt-wrapper .uk-subnav {
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .div-vilt-wrapper .uk-drop.uk-open {
    top: 62px !important;
    overflow: hidden;
  }

  .div-vilt-wrapper .uk-dropdown:not(.cst-lang-navigation-dtl) {
    min-width: 225px;
  }

  .div-vilt-wrapper .uk-drop.uk-open.cst-lang-navigation-dtl {
    top: 51px !important;
    overflow: hidden;
  }
}

.logo-vilt {
  display: inline-block;
  width: 145px;
}

header {
  position: relative;
}

.btn-vilt-menu {
  position: absolute;
  right: -67px;
  background: transparent;
  border: 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 100;

  border-radius: 10px;
  padding: 0 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  -webkit-transition:
    background 0.4s,
    border-color 0.4s,
    -webkit-box-shadow 0.4s;
  transition:
    background 0.4s,
    border-color 0.4s,
    -webkit-box-shadow 0.4s;
  transition:
    background 0.4s,
    box-shadow 0.4s,
    border-color 0.4s;
  transition:
    background 0.4s,
    box-shadow 0.4s,
    border-color 0.4s,
    -webkit-box-shadow 0.4s;

  width: 100%;
  max-width: 1340px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-control label.error,
fieldset label.error {
  font-size: 12px;
  color: red;
  text-align: left;
  display: block;
  margin: 4px;
}

.navbar {
  background: rgba(255, 255, 255, 0.49);
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.27);
}

.body--dark .navbar {
  background: rgba(20, 20, 20, 0.79);
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(20, 20, 20, 0.27);
}

.cst-vilt-menu-mob {
  display: none;
  background-color: white;
  height: 40px;
  width: 40px;
  border: 0;
  border-radius: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #05092b;
  font-size: 22px;
  border: 1px solid #05092b;
  position: absolute;
  right: 15px;
  top: 15px;
}

.body--dark .navbar .navbar-container a.item-menu {
  color: white;
}

.body--dark .navbar .navbar-container a.item-menu.active {
  color: white;
  font-weight: bold;
}

button.btn-vilt-menu svg {
  fill: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.body--dark button.btn-vilt-menu svg {
  fill: var(--dark);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar .navbar-container a.item-menu {
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  white-space: nowrap;
  position: relative;
  padding-block: 26px;
}

.navbar .navbar-container a.item-menu::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background: var(--blue);
  -webkit-transition:
    width 0.3s,
    left 0.3s;
  transition:
    width 0.3s,
    left 0.3s;
}

.navbar .navbar-container a.item-menu.active {
  color: var(--blue);
}

.navbar .navbar-container a.item-menu.active::after {
  width: 100%;
  left: 0;
}

.navbar a.item-menu:hover {
  color: var(--blue);
}

.navbar a.item-menu:hover::after {
  width: 100%;
  left: 0;
}

/* ===== HAMBURGER BUTTON ===== */
.nav-toggle {
  display: none;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav-toggle span:nth-child(1) {
  top: 0;
}

.nav-toggle span:nth-child(2) {
  top: 10px;
}

.nav-toggle span:nth-child(3) {
  bottom: 0;
}

.nav-open .nav-toggle span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 10px;
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 10px;
}

.navbar a.active {
  color: var(--blue);
}

.navbar a.active::after {
  width: 100%;
  left: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .navbar {
    padding: 20px;
  }

  .cst-vilt-menu-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  h1 {
    line-height: 1.1;
  }

  .body--dark button.btn-vilt-menu svg {
    fill: white;
  }

  .div-vilt.active .uk-dropdown.active {
    position: relative;
    border: 0;
    margin-bottom: 16px;
    top: -16px;
  }

  .uk-dropdown.active .uk-nav li > a {
    border: 0;
    padding: 8px 20px;
  }

  .navbar-container {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;

    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    overflow: hidden;
    max-height: 0;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }

  .navbar-container a {
    padding: 18px 24px !important;
    border-bottom: 1px solid #eee;
  }

  /* MENU ABERTO */
  .nav-open .navbar-container {
    max-height: 400px;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* ===== SECTIONS ===== */
.section-container {
  padding: 120px 24px;
  max-width: 1340px;
  margin: 0 auto;
}

.section-full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #809dff 40%, #faf5ff 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

h1 {
  color: var(--white);
  font-family: 'Rubik', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  margin: 0px;
  padding: 20px;
  text-align: center;
  opacity: 0;
}

.magic {
  display: inline-block;
  position: relative;
}

.magic .magic-text {
  -webkit-animation: background-pan 3s linear infinite;
  animation: background-pan 3s linear infinite;
  background: -webkit-gradient(
    linear,
    left top, right top,
    from(var(--purple)),
    color-stop(var(--violet)),
    color-stop(rgb(63 11 141)),
    to(rgb(151 38 199))
  );
  background: linear-gradient(
    to right,
    var(--purple),
    var(--violet),
    rgb(63 11 141),
    rgb(151 38 199)
  );
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

@-webkit-keyframes background-pan {
  from {
    background-position: 0% center;
  }

  to {
    background-position: -200% center;
  }
}

@keyframes background-pan {
  from {
    background-position: 0% center;
  }

  to {
    background-position: -200% center;
  }
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line-inner {
  display: block;
  -webkit-transform: translateY(110%);
  transform: translateY(110%);
}

.hero p {
  font-size: clamp(20px, 4vw, 24px);
  color: var(--white);
  max-width: 500px;
  font-weight: 400;
  line-height: 32px;
  margin: 0 auto 36px;
  opacity: 0;
  visibility: hidden;
}

.hero-cta {
  opacity: 0;
  visibility: hidden;
}

.hero-cta svg,
.hero-cta span {
  position: relative;
  z-index: 1;
}

.hero-cta svg {
  width: 18px;
  height: 18px;
}

.hero-dashboard {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  position: relative;
  z-index: 2;
}

.hero-dashboard img {
  width: 100%;
  height: auto;
  display: block;
}

.container-mouse {
  position: absolute;
  bottom: 36px;
}

.field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.mouse {
  width: 24px;
  height: 45px;
  border: 2px solid var(--blue-dark);
  border-radius: 30px;
  position: relative;
  &::before {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    top: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--blue-dark);
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
    -webkit-animation: wheel 2s infinite;
  }
}

@keyframes wheel {
  to {
    opacity: 0;
    top: 30px;
  }
}

@-webkit-keyframes wheel {
  to {
    opacity: 0;
    top: 30px;
  }
}

@keyframes down {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  40% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@-webkit-keyframes down {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  40% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@keyframes scroll {
  0% {
    height: 40px;
  }
  30% {
    height: 70px;
  }
  60% {
    height: 40px;
  }
}

@-webkit-keyframes scroll {
  0% {
    height: 40px;
  }
  30% {
    height: 70px;
  }
  60% {
    height: 40px;
  }
}

@-webkit-keyframes float {
  0%,
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}

@keyframes float {
  0%,
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}

@-webkit-keyframes glowPulse {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1;
  }
}

@-webkit-keyframes iconPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
}

@keyframes iconPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
}

@-webkit-keyframes arrowBounce {
  0%,
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    opacity: 0.5;
  }
  60% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes arrowBounce {
  0%,
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    opacity: 0.5;
  }
  60% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

.ripple {
  position: absolute;
  width: 30px;
  height: 23px;
  border-radius: 30%;
  border: 1px solid rgba(49, 96, 255, 0.4);
  -webkit-animation: rippleOut 2.8s ease-out infinite;
  animation: rippleOut 2.8s ease-out infinite;
  pointer-events: none;
}

.ripple:nth-child(2) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  opacity: 0;
}

.ripple:nth-child(3) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  opacity: 0;
}

@-webkit-keyframes rippleOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(2.8);
    transform: scale(2.8);
    opacity: 0;
  }
}

@keyframes rippleOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(2.8);
    transform: scale(2.8);
    opacity: 0;
  }
}

/* ===== MAIN TITLE AND TEXT ===== */
.main-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(36px, 3vw, 60px);
  margin-bottom: 60px;
  font-weight: 400;
  line-height: 60px;
  line-height: 1.2;
}

.main-title.highlight-text {
  background: -webkit-gradient(linear, left top, right top, from(#0f172b), color-stop(60%, #1c398e), color-stop(90%, #9810fa));
  background: linear-gradient(90deg, #0f172b 0%, #1c398e 60%, #9810fa 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.main-text {
  font-size: 24px;
  color: #314158;
  font-weight: 400;
  max-width: 870px;
  margin: auto;
}

/* ===== FEATURE ===== */
.features {
  padding: 80px 20px 0 20px;
  max-width: 1340px;
  margin: 0 auto;
  text-align: center;
}

.feature--title {
  position: sticky;
  top: 1%;
}

@media (min-height: 710px) {
  .feature--title {
    top: 7%;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}

.feature-card .feature-img {
  border-radius: 12px;
  overflow: hidden;
}

.feature-card .feature-img img {
  width: 100%;
  display: block;
}

.feature-content {
  padding: 24px;
}

.feature-card h3 {
  font-size: 21px;
  font-weight: 700;
  text-align: left;
  margin: 0 0 16px 0;
}

.feature-card p {
  font-size: 16px;
  color: rgba(49, 65, 88, 1);
  line-height: 29px;
  text-align: left;
}

/* ===== RESULTS ===== */
.results {
  background-image: url('../../img/products/flowtuate/results-bg.png');
  background-repeat: no-repeat;
  width: 100vw;
}

.results-section-container {
  padding: 0 20px;
  max-width: 1340px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 5;
}

.results-item svg {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.results-container {
  background: rgba(255, 255, 255, 1);
  border-top: 1px solid rgba(226, 232, 240, 1);
  -webkit-box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  padding: clamp(16px, 4vw, 50px);
}

.results-section-container .results-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9.3px);
  -webkit-backdrop-filter: blur(9.3px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.scene-op .results-section-container {
  margin-top: 11rem;
}

.results-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .results-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  #holder {
    height: 50vh;
    top: 20vh;
  }
}

.results-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 16px;
  margin-right: 5%;
}

.results-item h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
}

.results-item p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(69, 85, 108, 1);
  text-align: left;
}

.results-item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 8px;
}

.results-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
}

.results .main-title,
.results .main-text,
.results-item,
.results-text {
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}

/* ===== IMPACT ===== */
.impact {
  padding: 80px 20px;
  max-width: 1340px;
  margin: 0 auto;
  text-align: center;
}

.impact-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 60px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.impact-card {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 280px;
  padding: 40px;
  border-radius: 20px;
  background: #f8fafc;
  -webkit-box-shadow: 0 10px 30px rgba(15, 23, 43, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 43, 0.08);
  -webkit-transition:
    -webkit-transform 0.4s ease,
    -webkit-box-shadow 0.4s ease;
  transition:
    -webkit-transform 0.4s ease,
    -webkit-box-shadow 0.4s ease;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    -webkit-transform 0.4s ease,
    -webkit-box-shadow 0.4s ease;
  text-align: left;
}

.impact-card h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 8px;
}

.impact-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.impact-card:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 40px rgba(15, 23, 43, 0.15);
  box-shadow: 0 20px 40px rgba(15, 23, 43, 0.15);
}

.card-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

/* QUOTE GLASS */
.quote-wrapper {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 100px;
}

.quote-track {
  position: relative;
  width: 100%;
  max-width: 900px;
  min-height: 220px;
}

.quote {
  position: absolute;
  width: 100%;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  padding: 50px 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  -webkit-box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(190, 219, 255, 1);
}

.quote.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.quote-text {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  font-style: italic;
  margin-block: 20px;
}

.quote-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
}

.quote-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.quote-author div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  text-align: left;
}

.quote-img {
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 1;
}

.quote-img2 {
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: 1;
}

/* ===== DOCUMENTS ===== */
.documents {
  background: var(--bg);
  padding-bottom: 20px;
  margin-top: -80px;
  z-index: 99;
  position: relative;
  width: 100vw;
}

.documents-container {
  padding: 80px 20px 0 20px;
  max-width: 1340px;
  margin: 0 auto;
  text-align: center;
}

.documents-container h2.main-title {
  color: var(--white);
  margin-bottom: 0;
}

.documents .results-container {
  background: linear-gradient(
    135deg,
    rgba(43, 127, 255, 0.1) 0%,
    rgba(173, 70, 255, 0.1) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.documents .results-item h3 {
  color: var(--white);
}

.documents .results-item p {
  color: rgba(144, 161, 185, 1);
}

.documents .results-text {
  color: var(--white);
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

/* ─── subtle noise ─── */
#scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='1537' height='1297' viewBox='0 0 1537 1297' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.300071' filter='url(%23filter0_f_482_2132)'%3E%3Cpath d='M128 648.5C128 361.036 361.036 128 648.5 128H888.5C1175.96 128 1409 361.036 1409 648.5V648.5C1409 935.964 1175.96 1169 888.5 1169H648.5C361.036 1169 128 935.964 128 648.5V648.5Z' fill='%232B7FFF' fill-opacity='0.2'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_482_2132' x='0' y='0' width='1537' height='1297' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='64' result='effect1_foregroundBlur_482_2132'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
  opacity: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 200;
  height: 100%;
  width: 100%;
}

/* ─── SCENE ─── */
#scene {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

/* ─── GRID ─── */
#scene::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--text-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--text-dim) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.18;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(
    ellipse 90% 90% at 50% 50%,
    black 20%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 90% 90% at 50% 50%,
    black 20%,
    transparent 100%
  );
}

/* ─── TOP BAR ─── */
#topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid var(--border);
  z-index: 50;
  background: rgba(8, 12, 20, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.tb-brand {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-primary);
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.tb-brand-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  -webkit-box-shadow: 0 0 10px 3px rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 10px 3px rgba(59, 130, 246, 0.6);
}

.tb-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.tb-stat {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.tb-stat span {
  color: var(--text-primary);
  font-weight: 500;
  margin-left: 5px;
}

/* ─── BOTTOM BAR ─── */
#bottombar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 40px;
  border-top: 1px solid var(--border);
  z-index: 50;
  background: rgba(8, 12, 20, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.bb-item {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.bb-item.active {
  color: var(--text-muted);
}

/* ─── SIDE LABELS ─── */
.side-label {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 40;
  pointer-events: none;
}

#label-left {
  left: 32px;
  text-align: left;
}

#label-right {
  right: 32px;
  text-align: right;
}

.sl-tag {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  margin-bottom: 10px;
}

.sl-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.9rem, 1.6vw, 1.25rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.sl-sub {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.7;
}

/* ─── TRACK ─── */
#track {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top, right top,
    from(transparent),
    color-stop(20%, rgba(59, 130, 246, 0.12)),
    color-stop(45%, rgba(59, 130, 246, 0.25)),
    color-stop(80%, rgba(59, 130, 246, 0.12)),
    to(transparent)
  );
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.12) 20%,
    rgba(59, 130, 246, 0.25) 45%,
    rgba(59, 130, 246, 0.12) 80%,
    transparent 100%
  );
  z-index: 5;
}

/* ─── THE BEAM ─── */
#beam-wrap {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 30;
  pointer-events: none;
}

#beam-line {
  position: absolute;
  left: 50%;
  top: 6%;
  bottom: 6%;
  width: 1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: -webkit-gradient(
    linear,
    left top, left bottom,
    from(transparent),
    color-stop(15%, var(--beam-color)),
    color-stop(50%, var(--beam-core)),
    color-stop(85%, var(--beam-color)),
    to(transparent)
  );
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--beam-color) 15%,
    var(--beam-core) 50%,
    var(--beam-color) 85%,
    transparent 100%
  );
  -webkit-box-shadow:
    0 0 1px 0 #fff,
    0 0 20px 4px rgba(45, 111, 255, 0.5),
    0 0 60px 12px rgba(45, 111, 255, 0.15);
  box-shadow:
    0 0 1px 0 #fff,
    0 0 20px 4px rgba(45, 111, 255, 0.5),
    0 0 60px 12px rgba(45, 111, 255, 0.15);
}

/* beam halo */
#beam-halo {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80px;
  background: radial-gradient(
    ellipse 40px 100% at 50% 50%,
    rgba(45, 111, 255, 0.08) 0%,
    transparent 100%
  );
}

/* beam label chip */
#beam-chip {
  position: absolute;
  left: 50%;
  top: 48px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 35;
  white-space: nowrap;
  background: rgba(13, 18, 32, 0.95);
  border: 1px solid rgba(45, 111, 255, 0.35);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: rgba(100, 160, 255, 0.85);
  text-transform: uppercase;
  -webkit-box-shadow: 0 4px 24px rgba(45, 111, 255, 0.15);
  box-shadow: 0 4px 24px rgba(45, 111, 255, 0.15);
}

#beam-chip svg {
  fill: white;
  width: 120px;
}

/* ─── DOCUMENT CARD ─── */
.doc-card {
  position: absolute;
  width: 130px;
  height: 168px;
  background: var(--doc-paper);
  border-radius: 4px;
  -webkit-box-shadow:
    0 2px 0 0 var(--doc-paper2),
    0 4px 0 0 #e0e2ea,
    0 8px 32px var(--doc-shadow),
    0 2px 8px rgba(0, 0, 0, 0.3);
  box-shadow:
    0 2px 0 0 var(--doc-paper2),
    0 4px 0 0 #e0e2ea,
    0 8px 32px var(--doc-shadow),
    0 2px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 20;
  will-change: transform, opacity;
}

/* stacked paper effect */
.doc-card::before,
.doc-card::after {
  content: '';
  position: absolute;
  left: 3px;
  right: -3px;
  border-radius: 0 0 4px 4px;
  background: #e8eaef;
  z-index: -1;
}

.doc-card::before {
  top: 2px;
  height: 100%;
  opacity: 0.7;
}

.doc-card::after {
  top: 4px;
  height: 100%;
  opacity: 0.4;
}

.doc-topbar {
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
}

.doc-type-icon {
  width: 11px;
  height: 14px;
  border-radius: 1px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

.doc-type-icon::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 4px 4px 0;
  border-color: transparent rgba(0, 0, 0, 0.2) transparent transparent;
}

.doc-filename {
  font-size: 0.5rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80px;
}

.doc-body {
  padding: 6px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.doc-row {
  height: 4px;
  border-radius: 2px;
  background: #d4d7e0;
}

.doc-row.title {
  height: 6px;
  background: #b0b4c2;
  width: 70%;
  margin-bottom: 4px;
}

/* doc-type color themes */
.dtype-pdf .doc-topbar {
  background: #dc2626;
}

.dtype-pdf .doc-type-icon {
  background: #ef4444;
}

.dtype-pdf .doc-filename {
  color: rgba(255, 255, 255, 0.8);
}

.dtype-docx .doc-topbar {
  background: #1d4ed8;
}

.dtype-docx .doc-type-icon {
  background: #3b82f6;
}

.dtype-docx .doc-filename {
  color: rgba(255, 255, 255, 0.8);
}

.dtype-xlsx .doc-topbar {
  background: #15803d;
}

.dtype-xlsx .doc-type-icon {
  background: #22c55e;
}

.dtype-xlsx .doc-filename {
  color: rgba(255, 255, 255, 0.8);
}

.dtype-img .doc-topbar {
  background: #92400e;
}

.dtype-img .doc-type-icon {
  background: #f59e0b;
}

.dtype-img .doc-filename {
  color: rgba(255, 255, 255, 0.8);
}

/* ─── TRANSFORMED STATE ─── */
.doc-card.transformed {
  background: var(--surface);
  -webkit-box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.3),
    0 0 30px rgba(59, 130, 246, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.5);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.3),
    0 0 30px rgba(59, 130, 246, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.5);
}

.doc-card.transformed::before,
.doc-card.transformed::after {
  display: none;
}

/* data inside transformed card */
.data-lines {
  display: none;
  padding: 8px 9px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.doc-card.transformed .doc-body {
  display: none;
}

.doc-card.transformed .data-lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.doc-card.transformed .doc-topbar {
  background: rgba(59, 130, 246, 0.15);
}

.doc-card.transformed .doc-type-icon {
  background: var(--accent-blue);
}

.doc-card.transformed .doc-filename {
  color: rgba(100, 160, 255, 0.8);
}

.doc-card.transformed .doc-row.title {
  display: none;
}

.data-row {
  font-family: 'DM Mono', monospace;
  font-size: 0.42rem;
  line-height: 1;
  border-radius: 1px;
  padding: 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
}

.data-row.k {
  color: var(--data-col);
}

.data-row.v {
  color: var(--data-hot);
  padding-left: 6px;
}

.data-row.dim {
  color: var(--text-muted);
}

/* ─── BEAM FLASH ─── */
#beam-flash {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 200px;
  background: radial-gradient(
    ellipse 100px 50% at 50% 50%,
    rgba(180, 210, 255, 0.18),
    transparent
  );
  opacity: 0;
  pointer-events: none;
  z-index: 28;
}

/* ─── DATA PARTICLES ─── */
.dp {
  position: absolute;
  font-family: 'DM Mono', monospace;
  font-size: 0.5rem;
  color: var(--data-col);
  pointer-events: none;
  z-index: 25;
  white-space: nowrap;
  opacity: 0;
}

/* ─── PROGRESS LINE ─── */
#progress-bar {
  position: absolute;
  bottom: 44px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: var(--border);
  z-index: 40;
}

#progress-fill {
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--accent-blue)), to(var(--accent-teal)));
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
  width: 0%;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
  -webkit-box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.scene-text {
  position: absolute;
  left: 65%;
  bottom: 50px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 30;
  pointer-events: none;
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
}

/* ===== FLOW =====*/
.overlay {
  position: sticky;
  height: 100vh;
  top: 0;
  overflow: hidden;
}

.track {
  height: 300vh;
}

.shape {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  background: #090e16;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.shape .img {
  width: 20rem;
  height: 20rem;
}

.img svg {
  width: 100%;
  height: 100%;
}

.gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(#7b2cff), to(#1e40af));
  background: linear-gradient(180deg, #7b2cff 0%, #1e40af 100%);
  margin-top: -300vh;
  height: auto;
  width: 100vw;
}

.capabilities {
  padding: 250vh 20px 0 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.cap-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
}

.cap-header h2 {
  font-size: 60px;
  margin-bottom: 16px;
  color: var(--white);
}

.cap-header p {
  opacity: 0.9;
  line-height: 1.6;
  font-size: 24px;
  color: var(--white);
}

.cap-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.cap-grid--v2 {
  margin-top: 28px;
  grid-template-columns: 40% 60%;
  max-width: calc(100% - 28px);
}

.cap-card {
  padding: clamp(16px, 4vw, 34px);
  border-radius: 24px;

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

  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;

  background: linear-gradient(
    135deg,
    rgba(12, 13, 41, 0.3315) 0%,
    rgba(12, 13, 41, 0.6205) 100%
  );
}

.cap-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    105.65deg,
    #ffffff 1.94%,
    rgba(153, 153, 153, 0.3) 45.98%
  );

  -webkit-mask:
    -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box,
    -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  z-index: -1;
  pointer-events: none;
}

.cap-card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
}

.cap-card h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 36px);
  font-weight: bold;
  line-height: 1.4;
}

.cap-card p {
  opacity: 0.9;
  line-height: 1.6;
  color: var(--white);
}

footer {
  margin-top: 15vh;
}

.cap-card-large {
  grid-column: span 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: clamp(0, 4vw, 40px);
}

.cap-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 60%;
}

.cap-feature-list li {
  padding: 16px 24px;
  margin-bottom: 14px;
  border-radius: 24px;
  color: white;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}

.cap-feature-list li {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(12, 13, 41, 0.33) 0%,
    rgba(12, 13, 41, 0.62) 100%
  );
  padding: 16px 24px;
  margin-bottom: 14px;
  border-radius: 24px;
  color: white;
  font-size: 16px;
  font-weight: 400;
  text-align: left;

  isolation: isolate;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  gap: clamp(8px, 4vw, 30px);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cap-card-content--icon {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.cap-card-content--icon svg {
  width: 60px;
}

.cap-feature-list li::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    105.65deg,
    #ffffff 1.94%,
    rgba(153, 153, 153, 0.9) 45.98%
  );

  -webkit-mask:
    -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box,
    -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  z-index: -1;
  pointer-events: none;
}

.cap-feature-list li:nth-child(odd)::before {
  background: linear-gradient(
    105.65deg,
    #ffffff 1.94%,
    rgba(153, 153, 153, 0.5) 35.98%
  );
}

.cap-feature-list li:nth-child(even)::before {
  background: linear-gradient(
    105.65deg,
    rgba(153, 153, 153, 0.5) 35.98%,
    #ffffff 100%
  );
}

.cap-card-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cap-card-content p {
  font-size: 24px;
  font-weight: normal;
  color: white;
  text-align: left;
}

.cap-pill {
  background: rgba(255, 255, 255, 0.18);
  font-size: 16px;
  font-style: italic;
  color: rgba(204, 255, 0, 1);
  line-height: 20px;
  display: block;
  padding: 12px 16px;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 14px;
  margin-top: 30px;
}

.cap-card-wide {
  grid-column: span 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.cap-card-wide .cap-card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left;
}

.cap-card--xs {
  text-align: left;
}

.cap-card--md {
  text-align: left;
}

.cap-card--md h3,
.cap-card--xs h3,
.cap-card-wide .cap-card-content h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
}

.cap-card-wide .cap-card-content h3 {
  margin-bottom: 32px;
}

.cap-card--md p,
.cap-card--xs p,
.cap-card-wide .cap-card-content p {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.cap-card--xs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-image: url('./../../img/products/flowtuate/icon-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-color: #13184f;
}

.cap-card--xs::before {
  background: linear-gradient(
    130deg,
    rgba(153, 153, 153, 0.5) 35.98%,
    #ffffff 100%
  );
}

.cap-card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 16px;
  color: white;
  line-height: 24px;
  font-weight: 300;
  margin-top: 20px;
}

.cap-metrics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  height: 100%;
}

.metric {
  padding: 24px;
  border-radius: 24px;
  width: 160px;
  font-size: 24px;
  line-height: 1;
  color: white;
  text-align: left;
  font-weight: 400;
}

.metric:nth-child(1) {
  background: linear-gradient(
    135deg,
    rgba(12, 13, 41, 0.3315) 0%,
    rgba(186, 189, 255, 0.16) 100%
  );
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.metric:nth-child(2) {
  background: linear-gradient(
    135deg,
    rgba(12, 13, 41, 0.3315) 0%,
    rgba(79, 186, 94, 0.21) 100%
  );
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.metric:nth-child(3) {
  background: linear-gradient(
    135deg,
    rgba(152, 16, 250, 0.21) 0%,
    rgba(12, 13, 41, 0.6205) 100%
  );
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 900px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }

  .navbar .cst-btn {
    margin-bottom: 16px;
  }

  .div-vilt.active {
    display: block !important;
    height: 100vh;
  }

  .div-vilt.active .div-vilt-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding-top: 10px;
  }

  .div-vilt.active .div-vilt-wrapper nav {
    width: 100%;
  }

  .div-vilt.active .div-vilt-wrapper .uk-subnav li {
    text-align: left;
    width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .div-vilt.active nav ul.uk-subnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
    text-align: left;
  }

  .btn-vilt-menu {
    position: relative;
    right: 0;
  }

  .navbar-container {
    top: calc(100% + 2px);
    border-radius: 0;
  }

  .cap-feature-list {
    max-width: 100%;
  }

  .cap-card-large,
  .cap-card-wide {
    grid-column: span 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cap-metrics {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cap-grid--v2 {
    max-width: 100%;
  }

  .scene-op {
    height: auto !important;
  }

  .scene-op .results-section-container img {
    max-width: 100%;
  }

  .scene-op::after {
    display: none;
  }

  .metric {
    width: 100%;
  }

  .social-networks {
    margin: 0 16px;
  }

  .scene-text {
    position: absolute;
    bottom: 0;
    left: 16px;
    max-width: 100%;
    right: 0;
    -webkit-transform: none;
    transform: none;
    font-size: 16px;
  }

  .results-section-container {
    padding-inline: 0;
  }
}

.w-flow {
  fill: #00114a;
}

.flowtuate-logo svg {
  fill: #3161ff;
}

.body--dark .flowtuate-logo svg {
  fill: #fff;
}

.body--dark .w-flow {
  fill: #3161ff;
}

/* ===== OP ===== */
.scene-op {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100vw;
  height: 123vw;
  overflow: hidden;
  background: #1e40af;
  background: -webkit-gradient(
    linear,
    left top, left bottom,
    from(#1e40af),
    color-stop(15%, #112581),
    color-stop(70%, #00053f),
    to(#00053f)
  );
  background: linear-gradient(
    to bottom,
    #1e40af 0%,
    #112581 15%,
    #00053f 70%,
    #00053f 100%
  );
}

.scene-op::after {
  content: '';
  background-color: var(--white);
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 1;
}

.scene-op .results-container {
  margin-top: 50px;
}

.scene-op .results-container h3 {
  color: white;
}

.scene-op .results-container p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 20px;
}

.scene-op .results-container .results-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  /*background: radial-gradient(ellipse 120% 100% at 50% 60%, #0022cc 0%, #0033ff 40%, #1a55ff 100%);*/
  z-index: 0;
  height: 105vw;
}

.circle {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
}

.c2 {
  width: 102vw;
  height: 102vw;
  background: radial-gradient(
    circle at 48% 38%,
    #0d2aaa 0%,
    #00118a 55%,
    #000d70 100%
  );
  -webkit-box-shadow:
    inset 0 0 40px 8px rgba(0, 30, 180, 0.5),
    0 0 60px 20px rgba(0, 20, 130, 0.3);
  box-shadow:
    inset 0 0 40px 8px rgba(0, 30, 180, 0.5),
    0 0 60px 20px rgba(0, 20, 130, 0.3);
  z-index: 2;
}

.c3 {
  width: 82vw;
  height: 82vw;
  background: radial-gradient(
    circle at 50% 42%,
    #0a1e8c 0%,
    #060e5e 60%,
    #020840 100%
  );
  -webkit-box-shadow:
    inset 0 0 30px 6px rgba(0, 20, 120, 0.6),
    0 0 40px 15px rgba(0, 10, 80, 0.4);
  box-shadow:
    inset 0 0 30px 6px rgba(0, 20, 120, 0.6),
    0 0 40px 15px rgba(0, 10, 80, 0.4);
  z-index: 3;
}

.c4 {
  width: 62vw;
  height: 62vw;
  background: radial-gradient(
    circle at 50% 45%,
    #060e5c 0%,
    #020733 70%,
    #010420 100%
  );
  -webkit-box-shadow: inset 0 0 20px 4px rgba(0, 10, 100, 0.7);
  box-shadow: inset 0 0 20px 4px rgba(0, 10, 100, 0.7);
  z-index: 4;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 1) inset;
  box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 1) inset;
}

.c1::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px solid rgba(100, 140, 255, 0.25);
  pointer-events: none;
}

.c3::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 1px solid rgba(160, 190, 255, 0.18);
  pointer-events: none;
}

.reflex {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 0px;
  background: -webkit-gradient(
    linear,
    left top, right top,
    from(transparent),
    color-stop(30%, rgba(180, 200, 255, 0.18)),
    color-stop(50%, rgba(180, 200, 255, 0.28)),
    color-stop(70%, rgba(180, 200, 255, 0.18)),
    to(transparent)
  );
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(180, 200, 255, 0.18) 30%,
    rgba(180, 200, 255, 0.28) 50%,
    rgba(180, 200, 255, 0.18) 70%,
    transparent 100%
  );
  z-index: 10;
  pointer-events: none;
}

/* ===== CUSTOMER ===== */
.customer-container {
  padding: 80px 20px;
  max-width: 1340px;
  margin: 0 auto;
  text-align: center;
}

.customer-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 36px 24px;
}

.customer-btns .cst-btn {
  padding-block: 18px;
  font-size: 22px;
}

.customer-btns .cst-btn--secondary,
.customer-btns .cst-btn--secondary:hover {
  background-color: rgba(16, 16, 16, 1);
}

.customer-btns .cst-btn--secondary::before {
  background: rgba(16, 16, 16, 1);
}

/* ===== FOOTER ===== */
footer {
  background: white;
  min-height: 75px;
  border-top: 1px solid rgba(226, 226, 226, 1);
}

.footer-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #3b82f6;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: fixed;
  right: 60px;
  bottom: 80px;
  z-index: 9;
}

.footer-top-btn:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.social-networks i {
  color: var(--dark);
  text-decoration: none;
}

.social-networks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.social-networks a {
  color: var(--dark);
  text-decoration: none;
}

.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1340px;
  height: 75px;
  margin: auto;
}

.copyright {
  padding: 0 16px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
}

@media (max-width: 900px) {
  .footer {
    padding: 40px 30px;
  }

  .footer-top-btn {
    right: 16px;
  }

  .footer-top,
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .footer-nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .body--dark .navbar .navbar-container a.item-menu.active,
  .body--dark .navbar .navbar-container a.item-menu {
    color: var(--dark);
  }
}

/* ===============================
    COMPONENT FEATURES
  ================================= */
.svc {
  padding: clamp(22px, 3vw, 44px);
}

.svc__wrap {
  /* cap overall width so columns stay “tight” */
  margin: 0 auto;
  display: grid;
  /* let columns shrink more before stacking to prevent overlap */
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 0.95fr);
  -webkit-column-gap: min(var(--svc-gap), var(--svc-gap-max));
  -moz-column-gap: min(var(--svc-gap), var(--svc-gap-max));
  column-gap: min(var(--svc-gap), var(--svc-gap-max));
  row-gap: var(--svc-gap);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  max-width: 1140px;
}

.svc__img-mob img {
  max-width: 100%;
  border-radius: 24px;
}

.svc__img-mob {
  display: none;
}

@media (max-width: 860px) {
  .svc__wrap {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }

  .svc__media,
  .svc__stage {
    position: relative !important;
    top: auto !important;
    height: auto !important;
  }

  .svc__right {
    width: 100%;
  }

  .feature--title {
    position: relative;
    top: auto;
    opacity: 1 !important;
  }

  .svc__images,
  .svc__img,
  .svc__img img {
    display: none !important;
  }

  .svc__mediaInner {
    height: auto !important;
  }

  .svc__mediaOverlay,
  .svc__progress,
  .svc__triggers {
    display: none;
  }

  .svc__card {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    -webkit-transform: none !important;
    transform: none !important;
    margin-bottom: 40px;
  }

  .impact,
  .capabilities {
    padding-inline: 0;
  }

  .cap-card-container,
  .cap-card-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .svc__card {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    padding: 0 !important;
  }

  .svc__cardText {
    padding: 24px;
  }

  .svc__img-mob {
    display: block !important;
  }

  .svc__images-title {
    z-index: 1;
    top: 0;
    left: 0;
  }
}

.svc__media {
  position: sticky;
  top: var(--svc-top);
  height: var(--svc-h);
}

.svc__mediaInner {
  height: 100%;
  border-radius: var(--svc-radius);
  overflow: hidden;
  position: relative;
  background: CanvasText;
}

.svc__images {
  position: absolute;
  inset: 0;
}

.svc__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transition: opacity 180ms linear;
  transition: opacity 180ms linear;
}

.svc__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.svc__images-title {
  position: absolute;
  color: white;
  font-weight: normal;
  font-size: clamp(28px, 4vw, 46px);
  padding: 24px 32px;
  line-height: 1.2;
}

.svc__img.is-active {
  opacity: 1;
}

.svc__mediaOverlay {
  position: absolute;
  inset: 0;
  padding: var(--svc-pad);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
  pointer-events: none;
}

.svc__kicker {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.92;
  font-size: clamp(56px, 6.6vw, 92px);
}

.svc__progress {
  position: absolute;
  left: var(--svc-pad);
  right: var(--svc-pad);
  bottom: calc(var(--svc-pad) * 0.65);
  pointer-events: none;
}

.svc__progressTrack {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.svc__progressFill {
  height: 100%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  background: rgba(255, 255, 255, 0.85);
}

.svc__right {
  position: relative;
}

.svc__stage {
  position: sticky;
  top: var(--svc-top);
  height: var(--svc-h);
  border-radius: var(--svc-radius);
}

.svc__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  padding: clamp(22px, 2.6vw, 44px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; /* center the content block vertically */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  gap: clamp(16px, 2vw, 28px);
  -webkit-transform: translate(-50%, -50%) translate3d(0, var(--card-y, 0px), 0)
    scale(var(--card-s, 1));
  transform: translate(-50%, -50%) translate3d(0, var(--card-y, 0px), 0)
    scale(var(--card-s, 1));
  -webkit-transform-origin: 50% 65%;
  transform-origin: 50% 65%;
  will-change: transform;
  border-radius: var(--svc-radius);
  background: var(--svc-card-odd);
  -webkit-box-shadow: 0px 4px 19.9px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 4px 19.9px 0px rgba(0, 0, 0, 0.13);
}

.svc__num {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: clamp(84px, 7vw, 120px);
  line-height: 1;
  color: #e7e8ea;
}

.svc__cardText {
  max-width: 420px;
}

.svc__cardText h3 {
  margin: 0 0 12px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(22px, 2.3vw, 36px);
}

.svc__cardText p {
  margin: 0;
  font-size: 20px;
  opacity: 0.85;
}

.svc__plus {
  position: absolute;
  bottom: clamp(28px, 4vh, 44px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition:
    background 120ms ease,
    color 120ms ease;
  transition:
    background 120ms ease,
    color 120ms ease;
}

.svc__plus:hover {
  background: currentColor;
  color: Canvas;
}

.svc__triggers {
  position: relative;
}

.svc__trigger {
  height: 100vh;
}

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -99999;
}

.modal.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  z-index: 99999;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 1200px;
  width: 90%;
  text-align: center;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  max-height: 80vh;
  overflow: auto;
}

#modalForm .modal-content {
  max-width: 540px;
  background-color: #f3f3f3;
}

.modal.show .modal-content {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #888;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.close:hover {
  color: #4f46e5;
}

.uk-card-grey {
  background-color: #f3f3f3;
  color: #666;
}

.uk-margin-medium-bottom {
  margin-bottom: 20px;
}

#li-antibot {
  width: 100%;
}

.uk-child-width-auto {
  text-align: left;
  position: relative;
}

.uk-alert-danger {
  background: #fef4f6;
  color: #f0506e;
  text-align: left;

  padding: 12px;
  margin: 16px 0;
}

.uk-alert {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 29px 15px 15px;
}

.uk-alert {
  max-width: 400px;
  display: none;
}

.uk-alert-success {
  background: #edfbf6;
  color: #1e8861;
  padding: 12px;
  margin: 16px 0;
}

.uk-text-primary {
  color: rgb(233, 0, 98) !important;
}

.uk-p-xsmall {
  font-size: 0.75rem;
  text-align: left;
}

.modal-content .cst-btn {
  margin-block: 25px;
  padding: 16px 32px;
}

.modal-content .main-title {
  margin-bottom: 20px;
}

.uk-input,
.uk-select,
.uk-textarea {
  max-width: 100%;
  width: 100%;
  border: 0 none;
  padding: 0 10px;
  background: #f8f8f8;
  color: #666;
}
.uk-input__subscribe {
  padding-top: 40px;
  background: #f3f3f3;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.uk-input {
  color: #2b2e3a;
  border-bottom: 1px solid #e8e8e8;
}

.form-control--v2 textarea {
  background-color: transparent;
  border-bottom: 1px solid #e8e8e8;
  padding: 0 14px;
  max-width: calc(100% - 40px);
  font-size: 0.875rem;
  line-height: 1.5;
  color: #2b2e3a;
}

.form-control textarea {
  height: 110px;
  resize: none;
}

.uk-fieldset {
  border: 0;
}

.uk-text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}

.uk-checkbox {
  background-color: #d3d3d3;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.uk-margin-right {
  margin-right: 20px !important;
}
.uk-radio,
.uk-checkbox {
  display: inline-block;
  height: 16px;
  width: 16px;
  overflow: hidden;
  margin-top: -4px;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #8b8b8b;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.uk-checkbox:checked {
  background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A);
}
.uk-radio:checked,
.uk-checkbox:checked,
.uk-checkbox:indeterminate {
  background-color: #1e87f0;
}
.uk-radio:not(:disabled),
.uk-checkbox:not(:disabled) {
  cursor: pointer;
}

#privacyModal-error {
  position: absolute;
  bottom: -23px;
  font-size: 12px;
}

.uk-alert {
  max-width: 400px;
  display: none;
}

.uk-button:not(:disabled) {
  cursor: pointer;
}

.uk-button-subscribe {
  background-color: rgb(233, 0, 98);
  color: #ffffff;
  border: 1px solid transparent;
  font-size: 0.75rem;
  letter-spacing: 3px;
}

.uk-text-uppercase {
  text-transform: uppercase !important;
}

.uk-button {
  margin: 0;
  border: none;
  overflow: visible;
  font: inherit;
  color: inherit;
  text-transform: none;
  -webkit-appearance: none;
  border-radius: 0;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 30px;
  vertical-align: middle;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
}

.form-control input,
.form-control textarea {
  border: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(142, 142, 142, 0.5);
  font-size: 0.8125rem;
  color: #2b2e3a;
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .cursor,
  .cursor-dot {
    display: none;
  }
  body {
    cursor: auto;
  }
  section {
    padding: 80px 20px;
  }
  .hero {
    padding-top: 100px;
  }
  .hero-cta,
  .ai-link,
  .block-card {
    cursor: auto;
  }
}

.white,
.border,
.darkBorderBg,
.glow {
  max-height: 70px;
  max-width: 164px;
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
  z-index: -1;
  /* Border Radius */
  border-radius: 12px;
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
.input {
  background-color: var(--blue);
  border: none;
  /* padding:7px; */
  width: 150px;
  height: 56px;
  border-radius: 10px;
  color: white;
  padding: 0 44px 0 24px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
}
#poda {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.input::-webkit-input-placeholder {
  color: #c0b9c0;
}
.input::-moz-placeholder {
  color: #c0b9c0;
}
.input:-ms-input-placeholder {
  color: #c0b9c0;
}
.input::-ms-input-placeholder {
  color: #c0b9c0;
}
.input::placeholder {
  color: #c0b9c0;
}

.input:focus {
  outline: none;
}

#main:focus-within > #input-mask {
  display: none;
}

#input-mask {
  pointer-events: none;
  width: 100px;
  height: 20px;
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(black));
  background: linear-gradient(90deg, transparent, black);
  top: 18px;
  left: 70px;
}
#pink-mask {
  pointer-events: none;
  width: 30px;
  height: 20px;
  position: absolute;
  background: #cf30aa;
  top: 10px;
  left: 5px;
  -webkit-filter: blur(20px);
  filter: blur(20px);
  opacity: 0.8;
  /* animation:leftright 4s ease-in infinite;*/
  -webkit-transition: all 2s;
  transition: all 2s;
}
#main:hover > #pink-mask {
  /*animation: rotate 4s linear infinite;*/
  opacity: 0;
}

.white {
  max-height: 63px;
  max-width: 307px;
  border-radius: 10px;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.white::before {
  content: '';
  z-index: -2;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(83deg);
  transform: translate(-50%, -50%) rotate(83deg);
  position: absolute;
  width: 600px;
  height: 600px;
  background-repeat: no-repeat;
  background-position: 0 0;
  -webkit-filter: brightness(1.4);
  filter: brightness(1.4);
  background-image: conic-gradient(
    rgba(0, 0, 0, 0) 0%,
    #a099d8,
    rgba(0, 0, 0, 0) 8%,
    rgba(0, 0, 0, 0) 50%,
    #dfa2da,
    rgba(0, 0, 0, 0) 58%
  );
  -webkit-animation: rotate 4s linear infinite;
  animation: rotate 4s linear infinite;
  -webkit-transition: all 2s;
  transition: all 2s;
}
.border {
  max-height: 59px;
  max-width: 303px;
  border-radius: 11px;
  -webkit-filter: blur(0.5px);
  filter: blur(0.5px);
}
.border::before {
  content: '';
  z-index: -2;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(70deg);
  transform: translate(-50%, -50%) rotate(70deg);
  position: absolute;
  width: 600px;
  height: 600px;
  -webkit-filter: brightness(1.3);
  filter: brightness(1.3);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: conic-gradient(
    #1c191c,
    #402fb5 5%,
    #1c191c 14%,
    #1c191c 50%,
    #cf30aa 60%,
    #1c191c 64%
  );
  /* animation: rotate 4s 0.1s linear infinite; */
  -webkit-transition: all 2s;
  transition: all 2s;
}
.darkBorderBg {
  max-height: 65px;
  max-width: 312px;
}
.darkBorderBg::before {
  content: '';
  z-index: -2;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(82deg);
  transform: translate(-50%, -50%) rotate(82deg);
  position: absolute;
  width: 600px;
  height: 600px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: conic-gradient(
    rgba(0, 0, 0, 0),
    #18116a,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0) 50%,
    #6e1b60,
    rgba(0, 0, 0, 0) 60%
  );
  -webkit-transition: all 2s;
  transition: all 2s;
}
#poda:hover > .darkBorderBg::before {
  -webkit-transform: translate(-50%, -50%) rotate(262deg);
  transform: translate(-50%, -50%) rotate(262deg);
}
#poda:hover > .glow::before {
  -webkit-transform: translate(-50%, -50%) rotate(240deg);
  transform: translate(-50%, -50%) rotate(240deg);
}
#poda:hover > .white::before {
  -webkit-transform: translate(-50%, -50%) rotate(263deg);
  transform: translate(-50%, -50%) rotate(263deg);
}
#poda:hover > .border::before {
  -webkit-transform: translate(-50%, -50%) rotate(250deg);
  transform: translate(-50%, -50%) rotate(250deg);
}

#poda:hover > .darkBorderBg::before {
  -webkit-transform: translate(-50%, -50%) rotate(-98deg);
  transform: translate(-50%, -50%) rotate(-98deg);
}
#poda:hover > .glow::before {
  -webkit-transform: translate(-50%, -50%) rotate(-120deg);
  transform: translate(-50%, -50%) rotate(-120deg);
}
#poda:hover > .white::before {
  -webkit-transform: translate(-50%, -50%) rotate(-97deg);
  transform: translate(-50%, -50%) rotate(-97deg);
}
#poda:hover > .border::before {
  -webkit-transform: translate(-50%, -50%) rotate(-110deg);
  transform: translate(-50%, -50%) rotate(-110deg);
}

#poda:focus-within > .darkBorderBg::before {
  -webkit-transform: translate(-50%, -50%) rotate(442deg);
  transform: translate(-50%, -50%) rotate(442deg);
  -webkit-transition: all 4s;
  transition: all 4s;
}
#poda:focus-within > .glow::before {
  -webkit-transform: translate(-50%, -50%) rotate(420deg);
  transform: translate(-50%, -50%) rotate(420deg);
  -webkit-transition: all 4s;
  transition: all 4s;
}
#poda:focus-within > .white::before {
  -webkit-transform: translate(-50%, -50%) rotate(443deg);
  transform: translate(-50%, -50%) rotate(443deg);
  -webkit-transition: all 4s;
  transition: all 4s;
}
#poda:focus-within > .border::before {
  -webkit-transform: translate(-50%, -50%) rotate(430deg);
  transform: translate(-50%, -50%) rotate(430deg);
  -webkit-transition: all 4s;
  transition: all 4s;
}

.glow {
  overflow: hidden;
  -webkit-filter: blur(30px);
  filter: blur(30px);
  opacity: 0.4;
  max-height: 130px;
  max-width: 354px;
}
.glow:before {
  content: '';
  z-index: -2;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(60deg);
  transform: translate(-50%, -50%) rotate(60deg);
  position: absolute;
  width: 999px;
  height: 999px;
  background-repeat: no-repeat;
  background-position: 0 0;
  /*border color, change middle color*/
  background-image: conic-gradient(
    #000,
    #402fb5 5%,
    #000 38%,
    #000 50%,
    #cf30aa 60%,
    #000 87%
  );
  /* change speed here */
  /* animation: rotate 4s 0.3s linear infinite; */
  -webkit-transition: all 2s;
  transition: all 2s;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(450deg);
    transform: translate(-50%, -50%) rotate(450deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(450deg);
    transform: translate(-50%, -50%) rotate(450deg);
  }
}
@-webkit-keyframes leftright {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    opacity: 1;
  }

  49% {
    -webkit-transform: translate(250px, 0px);
    transform: translate(250px, 0px);
    opacity: 0;
  }
  80% {
    -webkit-transform: translate(-40px, 0px);
    transform: translate(-40px, 0px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes leftright {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    opacity: 1;
  }

  49% {
    -webkit-transform: translate(250px, 0px);
    transform: translate(250px, 0px);
    opacity: 0;
  }
  80% {
    -webkit-transform: translate(-40px, 0px);
    transform: translate(-40px, 0px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

#filter-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
  max-height: 40px;
  max-width: 38px;
  height: 100%;
  width: 100%;

  isolation: isolate;
  overflow: hidden;
}
#main {
  position: relative;
}
#search-icon {
  position: absolute;
  left: 20px;
  top: 15px;
}
