@import url(./fonts/stylesheet.css);
html,
body {
  scroll-behavior: smooth;
}

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

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/***
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: "Aspekta", sans-serif;
  font-size: 20px;
  color: #91a0c3;
  line-height: 130%;
  font-weight: 400;
  background: #0d1019;
}

/* Global list alignment: bullets align with paragraph edge */
ul,
ol {
  list-style-position: outside;
  margin: 0 0 0 0;
  padding-left: 1.2em;
}

li {
  margin: 0 0 6px 0;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #fff;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

.auto__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

h1 {
  font-weight: 400;
  font-size: 60px;
  line-height: 1.25;
  background: linear-gradient(180.21deg, #e3f0fb 11.72%, #91a0c3 99.81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

h2 {
  font-weight: 400;
  font-size: 48px;
  line-height: 1.25;
  background: linear-gradient(180.21deg, #e3f0fb 11.72%, #91a0c3 99.81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
h2.big {
  font-weight: 400;
  font-size: 60px;
  line-height: 1.25;
}

h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.25;
  background: linear-gradient(180.21deg, #e3f0fb 11.72%, #91a0c3 99.81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
h3.ex {
  font-weight: 300;
  font-size: 60px;
  line-height: 1.25;
}

h4 {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  color: #91a0c3;
  text-shadow: 0px 2px 4px rgba(13, 16, 25, 0.5);
}

h6 {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 16px;
}
h6.sup {
  font-family: "Roboto Serif", sans-serif;
  color: #b78685;
}

p.big {
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
}
p.sm {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}

.heading-4 {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  color: #91a0c3;
  text-shadow: 0px 2px 4px rgba(13, 16, 25, 0.5);
}

.suptitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 16px;
  font-family: "Roboto Serif", sans-serif;
  color: #b78685;
}

.main {
  overflow: hidden;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Aspekta", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: 0.3s ease;
  color: #0d1019;
  padding: 10px 28px;
  background: #e3f0fb;
  border-radius: 2px;
}
.button:hover {
  background: #91a0c3;
  opacity: 1;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.breadcrumbs .suptitle {
  margin: 0;
}
.breadcrumbs span {
  width: 1px;
  height: 22px;
  background: #b78685;
  margin: 0 10px;
}
.breadcrumbs a:hover {
  opacity: 1;
  color: #e3f0fb;
}

.anchor {
  position: relative;
  top: -140px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 16px 0;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation-name: sticky;
  animation-duration: 0.4s;
  box-shadow: 0px 4px 4px 0px #00000021;
  background: #0d1019;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 245px;
}
.header__inner-logo img {
  width: 100%;
}

@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.nav {
  display: flex;
  align-items: center;
  padding: 8px 6px 8px 28px;
  max-width: 704px;
  background: rgba(13, 16, 25, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 2px;
}
.nav__inner {
  display: flex;
  align-items: center;
}
.nav__inner-links {
  list-style: none;
  padding-inline-start: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.nav__inner-links li {
  margin-right: 24px;
}
.nav__inner-links li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #91a0c3;
}
.nav__inner-links li a.active {
  color: #fff;
}
.nav__inner-links li a:hover {
  opacity: 1;
  color: #fff;
}
.nav__inner-foot {
  display: none;
}

.burger {
  display: none;
}

.footer {
  padding-top: 20px;
}
.footer__inner-row {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.footer__inner-row::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: calc(100% - 40px);
  background: rgba(145, 160, 195, 0.2);
  content: "";
}
.footer__inner-logo {
  width: 166px;
  display: flex;
  margin-bottom: 32px;
}
.footer__inner-logo img {
  width: 100%;
}
.footer__inner-col {
  width: calc(50% - 20px);
  max-width: 540px;
  position: relative;
  padding: 40px 0;
}
.footer__inner-col:last-child::before {
  right: 0;
  left: unset;
}
.footer__inner-col:last-child::after {
  right: 0;
  left: unset;
}
.footer__inner-col::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: calc(100% + 10px);
  background: rgba(145, 160, 195, 0.2);
  content: "";
}
.footer__inner-col::after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: calc(100% + 10px);
  background: rgba(145, 160, 195, 0.2);
  content: "";
}
.footer__inner-col p {
  color: #91a0c3;
}
.footer__inner-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer__inner-copy p {
  color: #91a0c3;
}
.footer__inner-terms {
  display: flex;
  align-items: center;
}
.footer__inner-terms a {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #91a0c3;
  margin-right: 24px;
}
.footer__inner-terms a:hover {
  opacity: 1;
  color: #fff;
}
.footer__inner-terms a:last-child {
  margin: 0;
}
.footerLinks {
  display: flex;
  justify-content: space-between;
}
.footerLinks__col {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}
.footerLinks__col a {
  font-weight: 400;
  font-size: 16px;
  color: #91a0c3;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.footerLinks__col a:hover {
  opacity: 1;
  color: #fff;
}
.footerLinks__col a:last-child {
  margin: 0;
}
.footerLinks__col a span {
  width: 18px;
  height: 18px;
  display: flex;
  margin-right: 10px;
}
.footerLinks__col a span svg {
  width: 100%;
  height: 100%;
}

.intro {
  position: relative;
}
.intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  isolation: isolate;
}
.intro__bg::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 310px;
  content: "";
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(13, 16, 25, 0) 13.94%, #0d1019 100%);
  -webkit-mask: linear-gradient(to top, black 65%, rgba(0, 0, 0, 0) 100%);
}
.intro__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 16, 25, 0.2);
  content: "";
}
.intro__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.intro__inner {
  display: flex;
  position: relative;
}
.intro__inner::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(50% - 20px);
  height: 1px;
  content: "";
  background: #91a0c3;
  opacity: 0.2;
  pointer-events: none;
}
.intro__inner::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(50% - 20px);
  height: 1px;
  content: "";
  background: #91a0c3;
  opacity: 0.2;
  pointer-events: none;
}
.intro__inner-content {
  width: calc(50% - 20px);
  min-height: 100vh;
  padding: 150px 20px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.intro__inner-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% - 20px);
  background: #91a0c3;
  content: "";
  opacity: 0.2;
  pointer-events: none;
}
.intro__inner-title {
  margin-bottom: 30px;
}
.intro__inner-text p {
  color: #e3f0fb;
}

.hero {
  position: relative;
  /* Add a softer bottom dissolve for hero sections without cards */
}
.hero.no-cards {
  padding-bottom: 60px;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  pointer-events: none;
}
.hero__bg::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(13, 16, 25, 0) 13.94%, #0d1019 85.94%);
  backdrop-filter: blur(1px);
}
.hero__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 545px;
  height: 545px;
  background: #0d1019;
  opacity: 0.8;
  filter: blur(100px);
  transform: translate(-15%, -20%);
  content: "";
}
.hero__bg picture,
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.hero__bg img {
  object-position: 50% 30%;
}
.hero.no-cards .hero__bg::before {
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 120px;
  /* dissolve depth */
  background: linear-gradient(180deg, rgba(13, 16, 25, 0) 0%, #0d1019 100%);
  backdrop-filter: blur(4px);
}
.hero__inner-main {
  position: relative;
  padding-top: 150px;
  margin-bottom: 30px;
}
.hero__inner-main::before {
  display: none;
}
.hero__inner-title {
  margin-bottom: 28px;
  width: 100%;
  max-width: unset;
}
.hero__inner-title h1 {
  line-height: 1.25;
  padding-bottom: 2px;
}
.hero__inner-text {
  width: 100%;
  max-width: unset;
  margin: 0;
}
.hero__inner-text p {
  color: #e3f0fb;
}
.hero__inner-row {
  display: flex;
  justify-content: space-between;
  margin: 28px -20px 0;
}
.heroItem {
  width: 25%;
  padding: 20px;
  position: relative;
  display: flex;
}
.heroItem:hover {
  opacity: 1;
}
.heroItem:hover .heroItem__inner {
  background: rgba(13, 16, 25, 0.4);
}
.heroItem:hover .heroItem__arrow svg {
  transform: rotate(-45deg);
  color: #e3f0fb;
}
.heroItem::before {
  position: absolute;
  top: 0;
  left: 50%;
  height: 1px;
  width: calc(100% - 40px);
  background: rgba(145, 160, 195, 0.2);
  content: "";
  transform: translateX(-50%);
}
.heroItem::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 1px;
  width: calc(100% - 40px);
  background: rgba(145, 160, 195, 0.2);
  content: "";
  transform: translateX(-50%);
}
.heroItem__inner {
  padding: 20px;
  border-radius: 2px;
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.heroItem__inner::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: calc(100% - 40px);
  background: rgba(145, 160, 195, 0.2);
  content: "";
  transform: translateY(-50%);
}
.heroItem__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.heroItem__top span {
  width: 48px;
  height: 48px;
  display: flex;
  margin-left: 10px;
}
.heroItem__top span img {
  width: 100%;
}
.heroItem__top-title {
  width: calc(100% - 58px);
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 32px;
  background: linear-gradient(180.21deg, #e3f0fb 11.72%, #91a0c3 99.81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  line-height: 40px;
  height: 80px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.heroItem__text {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: auto 0 0 0;
}
.heroItem__text p {
  color: #91a0c3;
  width: calc(100% - 52px);
}
.heroItem__arrow {
  width: 32px;
  height: 32px;
  display: flex;
  margin-left: 20px;
}
.heroItem__arrow svg {
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
  color: #91a0c3;
}

/* 800px cutoff: switch hero cards to 1x4 and adjust spacing */
@media (max-width: 800px) {
  .hero__inner-row {
    margin: 28px 0 0;
  }
  .heroItem {
    width: 100%;
  }
  .heroItem:last-child::after {
    display: block;
  }
  .heroItem::before {
    width: 100%;
  }
  .heroItem::after {
    width: 100%;
    display: none;
  }
  .heroItem__inner::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: calc(100% - 40px);
    background: rgba(145, 160, 195, 0.2);
    content: "";
    transform: translateY(-50%);
  }
}
/* Variant: hero without cards (maintain visual height similar to homepage) */
.hero.only .heroTop {
  min-height: 100vh;
  padding: 150px 0 120px;
}
.hero.only .hero__inner-title {
  margin-bottom: 120px;
}

/* Variant: inner page hero (mirrors .intro geometry) */
.hero.inner .hero__bg::before {
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 310px;
  content: "";
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(13, 16, 25, 0) 13.94%, #0d1019 100%);
  -webkit-mask: linear-gradient(to top, black 65%, rgba(0, 0, 0, 0) 100%);
}
.hero.inner .hero__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 16, 25, 0.2);
  content: "";
}
.hero.inner .hero__inner-main {
  min-height: 100vh;
  padding: 150px 20px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0;
}
.hero.inner .hero__inner-main::before {
  display: none;
}
.hero.inner .hero__inner-title {
  margin-bottom: 30px;
  width: calc(50% - 20px);
  max-width: unset;
}
.hero.inner .hero__inner-text {
  width: calc(50% - 20px);
  max-width: unset;
  margin: 0 0 0 auto;
}
.hero.inner .hero__inner-text p {
  color: #e3f0fb;
}

.proven {
  padding-top: 120px;
}
.proven__inner-title {
  margin-bottom: 60px;
  max-width: unset;
}
.proven__inner-title span {
  font-family: "Roboto Serif", sans-serif;
  color: #b78685;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  display: block;
}
.proven__inner-row {
  display: flex;
  justify-content: space-between;
  margin: 0 -20px;
  position: relative;
}
.proven__inner-row::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: calc(100% - 40px);
  background: rgba(145, 160, 195, 0.2);
  content: "";
}
.proven__inner-content {
  padding: 20px;
  position: relative;
  width: 50%;
}
.proven__inner-content::before {
  position: absolute;
  top: 0;
  right: 10px;
  height: 1px;
  width: calc(100% + 10px);
  background: rgba(145, 160, 195, 0.2);
  content: "";
}
.proven__inner-content::after {
  position: absolute;
  bottom: 0;
  right: 10px;
  height: 1px;
  width: calc(100% + 10px);
  background: rgba(145, 160, 195, 0.2);
  content: "";
}
.provenImage {
  width: 50%;
  padding: 20px;
  position: relative;
}
.provenImage::before {
  position: absolute;
  top: 0;
  left: 10px;
  height: 1px;
  width: calc(100% + 10px);
  background: rgba(145, 160, 195, 0.2);
  content: "";
}
.provenImage::after {
  position: absolute;
  bottom: 0;
  left: 10px;
  height: 1px;
  width: calc(100% + 10px);
  background: rgba(145, 160, 195, 0.2);
  content: "";
}
.provenImage__inner {
  width: 100%;
  padding-bottom: 100%;
  height: 100%;
  position: relative;
}
.provenImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.provenItem {
  margin-bottom: 20px;
  padding: 20px 0 40px;
  border-top: 1px solid rgba(145, 160, 195, 0.2);
}
.provenItem:first-child {
  border: unset;
}
.provenItem p {
  margin-bottom: 20px;
  color: #91a0c3;
}

.growth {
  padding: 120px 0 60px;
}
.growth__inner-title {
  text-align: center;
  max-width: unset;
  margin: 0 auto 60px;
}
.growth__inner-title span {
  font-family: "Roboto Serif", sans-serif;
  color: #b78685;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  display: block;
}
.growth__inner-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
}
.growth__inner-row::before {
  position: absolute;
  top: 0;
  left: 32.8%;
  height: 100%;
  width: 1px;
  content: "";
  background: #91a0c3;
  opacity: 0;
  transition: 0.3s ease;
  opacity: 0.2;
}
.growth__inner-row::after {
  position: absolute;
  top: 0;
  right: 32.8%;
  height: 100%;
  width: 1px;
  content: "";
  background: #91a0c3;
  opacity: 0;
  transition: 0.3s ease;
  opacity: 0.2;
}
.growth__inner-foot {
  display: flex;
  justify-content: center;
}
.growthItem {
  width: calc(33.3% - 24px);
  padding: 20px 0;
  border-top: 1px solid rgba(145, 160, 195, 0.2);
  border-bottom: 1px solid rgba(145, 160, 195, 0.2);
  position: relative;
}
.growthItem:hover {
  opacity: 1;
}
.growthItem:hover::before {
  opacity: 1;
}
.growthItem:hover .growthItem__inner {
  background: rgba(30, 34, 48, 0.4);
}
.growthItem:hover .growthItem__image img {
  transform: scale(1.1);
}
.growthItem:hover .growthItem__foot span svg {
  transform: rotate(-45deg);
  color: #e3f0fb;
}
.growthItem__inner {
  transition: 0.3s ease;
}
.growthItem__image {
  width: 100%;
  padding-bottom: 56.6%;
  position: relative;
  overflow: hidden;
}
.growthItem__image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  box-shadow: inset 0px 0px 6px 3px #0d1019;
  z-index: 2;
  pointer-events: none;
}
.growthItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  transition: 0.3s ease;
}
.growthItem__content {
  padding: 20px;
  position: relative;
}
.growthItem__content-title {
  font-weight: 400;
  font-size: 24px;
  color: #91a0c3;
  text-shadow: 0px 2px 4px rgba(13, 16, 25, 0.5);
  margin-bottom: 20px;
  line-height: 30px;
  height: 90px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.growthItem__tag {
  font-family: "Roboto Serif", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #91a0c3;
  padding: 4px 8px;
  background: #1e2230;
  backdrop-filter: blur(23.85px);
  border-radius: 2px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
}
.growthItem__foot {
  display: flex;
  justify-content: flex-end;
}
.growthItem__foot span {
  width: 32px;
  height: 32px;
  display: flex;
}
.growthItem__foot span svg {
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
  color: #91a0c3;
}

.join.sm {
  padding-top: 10px;
}
.join.sm .join__inner {
  padding: 120px 0;
  min-height: unset;
}
.join.sm .join__inner::before {
  position: absolute;
  top: -11px;
  left: 0;
  height: 1px;
  width: 100%;
  background: rgba(145, 160, 195, 0.2);
  content: "";
}
.join.sm .join__inner h2 {
  margin-bottom: 32px;
}
.join__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 60px;
  background: #131620;
  border-radius: 2px;
  padding: 120px 30px;
  position: relative;
  min-height: 560px;
}
.join__inner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  pointer-events: none;
}
.join__inner-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(13, 16, 25, 0.2), rgba(13, 16, 25, 0.2)), linear-gradient(180deg, #0d1019 0%, rgba(13, 16, 25, 0) 100%);
  box-shadow: inset 0px 0px 6px 3px #0d1019;
  z-index: 1;
}
.join__inner-bg::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, rgba(13, 16, 25, 0) 13.94%, #0d1019 100%);
  backdrop-filter: blur(8px);
  -webkit-mask: linear-gradient(to top, black 65%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.join__inner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  opacity: 0.5;
}
.join__inner::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 57%;
  content: "";
  background: linear-gradient(180deg, rgba(13, 16, 25, 0) 13.94%, #0d1019 92.33%);
  backdrop-filter: blur(25px);
  pointer-events: none;
}
.join__inner-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.join__inner-content h2 {
  margin-bottom: 24px;
}
.join__inner-content p {
  color: #91a0c3;
  margin-bottom: 48px;
}
.join__inner-content p:last-child {
  margin: 0;
}
.join__inner-content p b {
  font-weight: 600;
}
.join__inner-title {
  margin-bottom: 48px;
}
.join__inner-title:last-child {
  margin: 0;
}
.join__inner-title br.mob {
  display: none;
}

.about {
  padding-top: 60px;
  /* Consistent 2x2 -> 1x4 cutoff at 800px for in-hero cards */
}
.about.in-hero {
  padding-top: 0;
  padding-bottom: 0;
}
.about.in-hero .about__inner {
  margin-top: 28px;
}
.about.in-hero .about__inner-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 40px;
}
.about.in-hero .aboutItem {
  width: auto;
  padding: 20px 0;
}
.about.in-hero .aboutItem:nth-child(n)::before {
  display: none;
}
.about.in-hero .aboutItem:nth-child(n) .aboutItem__inner::after {
  display: none;
}
@media (max-width: 800px) {
  .about.in-hero .about__inner-row {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}
.about.sm {
  padding-bottom: 20px;
}
.about.sm .aboutItem {
  width: calc(33.3% - 25px);
}
.about.sm .aboutItem:nth-child(n + 3)::before {
  display: block;
}
.about.sm .aboutItem:nth-child(even) .aboutItem__inner::after {
  display: block;
}
.about.sm .aboutItem:nth-child(n + 4)::before {
  display: none;
}
.about.sm .aboutItem:nth-child(3n) .aboutItem__inner::after {
  display: none;
}
.about__inner-title {
  margin-bottom: 60px;
  max-width: 883px;
}
.about__inner-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.aboutItem {
  width: calc(50% - 20px);
  position: relative;
  padding: 20px 0;
}
.aboutItem:nth-child(n + 3)::before {
  display: none;
}
.aboutItem:nth-child(even) .aboutItem__inner::after {
  display: none;
}
.aboutItem::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #91a0c3;
  opacity: 0.2;
  pointer-events: none;
}
.aboutItem::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #91a0c3;
  opacity: 0.2;
  pointer-events: none;
}
.aboutItem__inner {
  padding: 20px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.aboutItem__inner::after {
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 100%;
  content: "";
  background: #91a0c3;
  opacity: 0.2;
  pointer-events: none;
}
.aboutItem__icon {
  width: 48px;
  height: 48px;
  display: flex;
  margin-bottom: 10px;
}
.aboutItem__icon img {
  width: 100%;
}
.aboutItem .heading-4 {
  background: linear-gradient(180.21deg, #e3f0fb 11.72%, #91a0c3 99.81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: unset;
  line-height: 30px;
  height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.aboutItem p {
  color: #91a0c3;
}

.story {
  padding: 120px 0 60px;
}
.story__inner {
  max-width: 740px;
  margin: 0 auto;
}
.story__inner-title {
  margin-bottom: 60px;
}
.story__inner-title:last-child {
  margin: 0;
}
.story__inner-text {
  margin-bottom: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(145, 160, 195, 0.2);
}
.story__inner-text:last-child {
  margin: 0;
}
.story__inner-text.first {
  border: unset;
  padding: 0;
}
.story__inner-text p {
  color: #91a0c3;
}
.story__inner-text p b {
  font-weight: 400;
  font-size: 160%;
  line-height: 130%;
}
.story__inner-text h3 {
  margin-bottom: 20px;
}
.story__inner-image {
  margin-bottom: 60px;
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}
.story__inner-image:last-child {
  margin: 0;
}
.story__inner-image::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 21%;
  content: "";
  background: linear-gradient(0deg, rgba(13, 16, 25, 0) 13.94%, #0d1019 100%);
  backdrop-filter: blur(10px);
  z-index: 1;
  -webkit-mask: linear-gradient(to bottom, black 65%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.story__inner-image::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 26%;
  content: "";
  background: linear-gradient(180deg, rgba(13, 16, 25, 0) 13.94%, #0d1019 100%);
  backdrop-filter: blur(10px);
  z-index: 1;
  -webkit-mask: linear-gradient(to top, black 65%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.story__inner-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.monitor {
  margin-top: 120px;
}
.monitor__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.monitor__inner::before {
  display: none;
}
.monitor__inner-content {
  width: calc(50% - 20px);
  padding: 40px 0;
  position: relative;
}
.monitor__inner-content::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #91a0c3;
  opacity: 0.2;
  pointer-events: none;
}
.monitor__inner-content h2 {
  margin-bottom: 20px;
}
.monitor__inner-content p {
  max-width: 518px;
}
.monitorImage {
  width: calc(50% - 20px);
  padding: 20px 0;
  position: relative;
}
.monitorImage::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #91a0c3;
  opacity: 0.2;
  pointer-events: none;
}
.monitorImage__inner {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.monitorImage__inner::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 40%;
  content: "";
  background: linear-gradient(0deg, rgba(13, 16, 25, 0) 13.94%, #0d1019 100%);
  backdrop-filter: blur(10px);
  z-index: 1;
  -webkit-mask: linear-gradient(to bottom, black 65%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.monitorImage__inner::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 37%;
  content: "";
  background: linear-gradient(180deg, rgba(13, 16, 25, 0) 13.94%, #0d1019 100%);
  backdrop-filter: blur(10px);
  z-index: 1;
  -webkit-mask: linear-gradient(to top, black 65%, rgba(0, 0, 0, 0) 100%);
}
.monitorImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.monitorImage__table {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 44px);
  display: flex;
}
.monitorImage__table img {
  width: 100%;
}

/* Page-specific overrides for Market Making page to remove extra separator lines */
.market {
  /* Remove hero row bottom separator so no line appears above monitor */
}
.market .monitor__inner-content::after {
  display: none;
}
.market .monitorImage::after {
  display: none;
}
.market .hero .heroItem::after {
  display: none;
}

.quote {
  padding: 120px 0;
  margin-bottom: 20px;
}
.quote__inner {
  max-width: 740px;
  margin: 0 auto;
}
.quote__inner-top {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.quote__inner-top span {
  width: 48px;
  height: 48px;
  background: #91a0c3;
  margin-right: 20px;
  display: flex;
}
.quote__inner-top p b {
  font-weight: 600;
  display: block;
}
.quote__inner-icon {
  width: 64px;
  height: 64px;
  margin-right: 20px;
  display: flex;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #91a0c3;
}
.quote__inner-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trusted__inner {
  padding: 100px 0 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(145, 160, 195, 0.2);
}
.trusted__inner-row {
  width: calc(100% - 320px);
  display: flex;
  justify-content: flex-end;
}
.trusted__inner p {
  max-width: 314px;
}
.trustedLogo {
  width: 120px;
  display: flex;
  margin-right: 32px;
}
.trustedLogo img {
  width: 100%;
}

.blog {
  padding-top: 111px;
}
.blog .auto__container {
  max-width: 1280px;
}
.blog__inner {
  padding-top: 60px;
  border-top: 1px solid rgba(145, 160, 195, 0.2);
}
.blog__inner-title {
  margin-bottom: 60px;
}
.blog__inner-content {
  max-width: 740px;
  margin: 0 auto;
}
.blog__inner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.blog__inner-row::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: calc(100% - 40px);
  background: #91a0c3;
  content: "";
  opacity: 0.2;
  pointer-events: none;
}
.blog__inner-col {
  width: calc(50% - 20px);
}
.blogItem {
  width: 100%;
  padding: 9px 0;
  border-top: 1px solid rgba(145, 160, 195, 0.2);
  border-bottom: 1px solid rgba(145, 160, 195, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
}
.blogItem.big {
  padding: 20px 0;
  height: 100%;
}
.blogItem:hover {
  opacity: 1;
}
.blogItem:hover::before {
  opacity: 1;
}
.blogItem:hover .blogItem__inner {
  background: rgba(30, 34, 48, 0.4);
}
.blogItem:hover .blogItem__image img {
  transform: scale(1.1);
}
.blogItem:hover .blogItem__foot span svg {
  transform: rotate(-45deg);
  color: #e3f0fb;
}
.blogItem__inner {
  transition: 0.3s ease;
}
.blogItem__image {
  width: 100%;
  padding-bottom: 56.6%;
  position: relative;
  overflow: hidden;
}
.blogItem__image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  box-shadow: inset 0px 0px 6px 3px #0d1019;
  z-index: 2;
}
.blogItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  transition: 0.3s ease;
}
.blogItem__content {
  padding: 20px;
  position: relative;
}
.blogItem__tag {
  font-family: "Roboto Serif", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #91a0c3;
  padding: 4px 8px;
  background: #1e2230;
  backdrop-filter: blur(23.85px);
  border-radius: 2px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
}
.blogItem__foot {
  display: flex;
  justify-content: flex-end;
}
.blogItem__foot span {
  width: 32px;
  height: 32px;
  display: flex;
}
.blogItem__foot span svg {
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
  color: #91a0c3;
}
.blogItem .heading-4 {
  font-weight: 400;
  text-shadow: unset;
  margin-bottom: 20px;
  background: linear-gradient(180.21deg, #e3f0fb 11.72%, #91a0c3 99.81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  line-height: 30px;
  height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category {
  padding: 120px 0 60px;
}
.category__inner {
  max-width: 740px;
  margin: 0 auto;
}
.category__inner-title {
  margin-bottom: 24px;
}
.category__inner-title .suptitle {
  margin: 0;
}
.category__inner-col {
  display: flex;
  flex-direction: column;
}
.categoryFilter {
  padding: 15px 0;
  display: flex;
  border-top: 1px solid rgba(145, 160, 195, 0.2);
  border-bottom: 1px solid rgba(145, 160, 195, 0.2);
  margin-bottom: 20px;
}
.categoryFilter__selected {
  display: none;
}
.categoryFilter__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.categoryFilter__item {
  font-family: "Roboto Serif", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #91a0c3;
  padding: 4px 8px;
  background: #1e2230;
  backdrop-filter: blur(23.85px);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  margin: 5px 10px;
  cursor: pointer;
  transition: 0.3s ease;
}
.categoryFilter__item.active {
  background: #91a0c3;
  color: #0d1019;
}
.categoryFilter__item:hover {
  opacity: 1;
  background: #91a0c3;
  color: #0d1019;
}
.categoryItem {
  margin-bottom: 20px;
  display: flex;
  cursor: pointer;
}
.categoryItem:hover {
  background: rgba(30, 34, 48, 0.4);
  opacity: 1;
}
.categoryItem:hover .categoryItem__image img {
  transform: scale(1.1);
}
.categoryItem:hover .categoryItem__title span svg {
  color: #e3f0fb;
  transform: rotate(-45deg);
}
.categoryItem:last-child {
  margin: 0;
}
.categoryItem__inner {
  width: 100%;
}
.categoryItem__image {
  width: 315px;
  overflow: hidden;
  position: relative;
}
.categoryItem__image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  box-shadow: inset 0px 0px 6px 3px #0d1019;
  z-index: 2;
  pointer-events: none;
}
.categoryItem__image-inner {
  width: 100%;
  padding-bottom: 56.6%;
  position: relative;
}
.categoryItem__image-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  transition: 0.3s ease;
}
.categoryItem__content {
  width: calc(100% - 334px);
  padding: 20px 20px 20px 0;
}
.categoryItem__inner {
  display: flex;
  justify-content: space-between;
}
.categoryItem__title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.categoryItem__title span {
  width: 32px;
  height: 32px;
  display: flex;
}
.categoryItem__title span svg {
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
  color: #91a0c3;
}
.categoryItem__tag {
  font-family: "Roboto Serif", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #91a0c3;
  padding: 4px 8px;
  background: #1e2230;
  backdrop-filter: blur(23.85px);
  border-radius: 2px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
}
.categoryItem .heading-4 {
  width: calc(100% - 52px);
  color: #e3f0fb;
  line-height: 30px;
  height: 90px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post {
  padding-top: 111px;
}
.post .auto__container {
  max-width: 1280px;
}
.post__inner {
  padding-top: 60px;
  border-top: 1px solid rgba(145, 160, 195, 0.2);
}
.post__inner-title {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(145, 160, 195, 0.2);
}
.post__inner-content {
  max-width: 740px;
  margin: 0 auto;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(145, 160, 195, 0.2);
}
.post__inner-tag {
  font-family: "Roboto Serif", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #91a0c3;
  padding: 4px 8px;
  background: #1e2230;
  backdrop-filter: blur(23.85px);
  border-radius: 2px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
}
.post__inner-image {
  width: 100%;
  padding-bottom: 56.6%;
  position: relative;
}
.post__inner-image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  box-shadow: inset 0px 0px 6px 3px #0d1019;
  z-index: 2;
}
.post__inner-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  transition: 0.3s ease;
}

.article {
  padding: 120px 0 80px;
}
.article__inner {
  max-width: 740px;
  margin: 0 auto;
}
.article__inner-content {
  margin-bottom: 60px;
}
.article__inner-content.last {
  margin-bottom: 40px;
}
.article__inner-content:last-child {
  margin: 0;
}
.article__inner-content .suptitle {
  margin-bottom: 20px;
}
.article__inner-content p {
  margin-bottom: 20px;
}
.article__inner-content p:last-child {
  margin: 0;
}
.article__inner-content p b {
  font-size: 18px;
  font-weight: 600;
}
.article__inner-content h3 {
  margin-bottom: 36px;
  color: #e3f0fb;
  background: none;
  -webkit-text-fill-color: unset;
}
.article__inner-quote {
  padding: 40px 0;
}
.article__inner-quote p {
  padding: 0 20px;
  color: #b78685;
  border-left: 1px solid #b78685;
}
.articleNav {
  display: flex;
  flex-direction: column;
}
.articleNav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #91a0c3;
  padding: 16px 0;
  border-bottom: 1px solid rgba(145, 160, 195, 0.2);
}
.articleNav__item:first-child {
  border-top: 1px solid rgba(145, 160, 195, 0.2);
}
.articleNav__item:hover {
  opacity: 1;
  color: #e3f0fb;
}
.articleNav__item.active {
  opacity: 1;
  color: #e3f0fb;
}
.articleNav__item p {
  width: calc(100% - 36px);
  margin: 0;
}
.articleNav__item span {
  width: 24px;
  height: 24px;
  display: flex;
}
.articleNav__item span svg {
  width: 100%;
  height: 100%;
}
.articleImage {
  width: 100%;
  margin-bottom: 60px;
}
.articleImage:last-child {
  margin: 0;
}
.articleImage__inner {
  width: 100%;
  position: relative;
  padding-bottom: 56.6%;
  margin-bottom: 28px;
}
.articleImage__inner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  box-shadow: inset 0px 0px 6px 3px #0d1019;
  z-index: 2;
}
.articleImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.articleImage__caption {
  font-family: "Roboto Serif", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  padding-left: 8px;
  border-left: 1px solid #91a0c3;
}
.articleSocial {
  padding-top: 20px;
  border-top: 1px solid rgba(145, 160, 195, 0.2);
  display: flex;
  align-items: center;
}
.articleSocial__row {
  margin-left: 20px;
  display: flex;
  align-items: center;
}
.articleSocial__row a {
  width: 24px;
  height: 24px;
  display: flex;
  margin-right: 10px;
  color: #91a0c3;
}
.articleSocial__row a:hover {
  color: #e3f0fb;
}
.articleSocial__row a:last-child {
  margin: 0;
}
.articleSocial__row a svg {
  width: 100%;
  height: 100%;
}

.post.career .post__inner {
  border-top: 0;
}
.post.career .post__inner-content {
  border: 0;
  padding: 0;
}
.post.career .post__inner-title {
  margin-bottom: 24px;
  padding-bottom: 6px;
}
.post.career .article__inner-content h3 {
  margin-top: 48px;
}

@media (max-width: 1380px) {
  h1 {
    font-size: 55px;
  }

  h2.big {
    font-size: 55px;
  }

  h3.ex {
    font-size: 50px;
  }
}
@media (max-width: 1180px) {
  .auto__container {
    padding: 0 30px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 44px;
  }
  h2.big {
    font-size: 50px;
  }

  h3 {
    font-size: 28px;
  }
  h3.ex {
    font-size: 45px;
  }

  .header {
    padding: 24px 0;
  }
  .header__inner-logo {
    width: 196px;
  }

  .nav__inner-links li {
    margin-right: 20px;
  }

  .hero__bg::after {
    width: 450px;
    height: 450px;
    transform: translate(-25%, -30%);
  }
  .hero__inner-title {
    margin-bottom: 28px;
  }
  .hero__inner-main {
    padding-top: 140px;
  }
  .hero__inner-row {
    flex-wrap: wrap;
  }
  .heroItem {
    width: 50%;
  }
  .heroItem__top-title {
    font-size: 28px;
  }

  /* Keep hero from overgrowing on ultrawide while staying responsive */
  .heroTop {
    height: clamp(560px, 70vh, 820px);
  }

  /* Homepage hero with cards should expand to fit content */
  .heroTop.has-cards {
    height: auto;
    padding-bottom: 60px;
  }

  /* Allow taller hero when about cards are inside the hero */
  .heroTop.has-about-cards {
    height: auto;
    padding-bottom: 60px;
  }

  .proven {
    padding-top: 90px;
  }
  .proven__inner-title {
    margin-bottom: 40px;
  }
  .proven__inner-content::before {
    width: calc(100% - 20px);
  }
  .proven__inner-content::after {
    width: calc(100% - 20px);
  }
  .provenImage::before {
    width: calc(100% - 20px);
  }
  .provenImage::after {
    width: calc(100% - 20px);
  }

  .growth {
    padding: 90px 0 50px;
  }
  .growth__inner-title {
    margin-bottom: 40px;
  }
  .growth__inner-row {
    margin-bottom: 40px;
  }
  .growthItem__content-title {
    margin-bottom: 10px;
  }

  .join__inner {
    padding: 120px 20px;
  }

  .intro__inner-content {
    padding-top: 140px;
  }

  .story {
    padding: 80px 0 60px;
  }
  .story__inner-title {
    margin-bottom: 40px;
  }
  .story__inner-text {
    margin-bottom: 40px;
  }
  .story__inner-image {
    margin-bottom: 40px;
  }

  .quote {
    padding: 80px 0;
  }

  .trusted__inner {
    padding: 80px 0 100px;
  }
  .trusted__inner-row {
    width: calc(100% - 300px);
  }
  .trustedLogo {
    width: 110px;
    margin-right: 20px;
  }

  .blog {
    padding-top: 99.2px;
  }
  .blog__inner {
    padding-top: 40px;
  }
  .blog__inner-title {
    margin-bottom: 40px;
  }

  .category {
    padding: 100px 0 60px;
  }

  .post {
    padding-top: 99.2px;
  }
  .post__inner {
    padding-top: 40px;
  }
  .post__inner-title {
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
  .post__inner-content {
    padding-bottom: 60px;
  }

  .article {
    padding: 100px 0 60px;
  }
  .article__inner-content {
    margin-bottom: 40px;
  }
  .articleImage {
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }

  .anchor {
    position: relative;
    top: -100px;
  }

  .header {
    background: transparent !important;
    box-shadow: unset !important;
  }
  .header__inner {
    padding: 12px;
    position: relative;
    flex-wrap: wrap;
  }
  .header__inner::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(13, 16, 25, 0.6);
    backdrop-filter: blur(25px);
    border-radius: 2px;
    pointer-events: none;
  }
  .header__inner-logo {
    position: relative;
    z-index: 2;
  }

  body.active {
    overflow: hidden;
  }

  .nav {
    order: 3;
    top: 72px;
    left: 24px;
    width: 100%;
    max-width: unset;
    height: calc(100vh - 96px);
    z-index: 9;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    padding: 0;
    backdrop-filter: unset;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s ease;
    background: transparent;
  }
  .nav.active {
    max-height: 100vh;
    opacity: 1;
  }
  .nav.active::before {
    opacity: 1;
  }
  .nav__inner {
    flex-direction: column;
    justify-content: unset;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    z-index: 1;
    padding: 44px 12px 0 12px;
    height: 100%;
    overflow-y: auto;
  }
  .nav__inner-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0 0 60px 0;
    padding-inline-start: 0;
  }
  .nav__inner-links li {
    margin: 0 0 20px 0;
  }
  .nav__inner-links li a {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.25;
  }
  .nav__inner-buttons {
    width: 100%;
    margin-bottom: 22px;
  }
  .nav__inner-buttons a {
    width: 100%;
  }
  .nav__inner-foot {
    display: block;
    width: 100%;
    border-top: 1px solid rgba(145, 160, 195, 0.2);
    padding: 40px 0 24px;
  }
  .nav__inner-foot p {
    color: #91a0c3;
  }
  .nav__inner-social {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .nav__inner-social a {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #91a0c3;
    margin-bottom: 16px;
  }
  .nav__inner-social a:last-child {
    margin: 0;
  }

  .burger {
    display: block;
    cursor: pointer;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    position: relative;
    width: 24px;
    height: 24px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 22%;
    width: 75%;
    height: 1px;
    background-color: #e3f0fb;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger span {
    top: 50%;
    width: 75%;
    height: 1px;
    background-color: #e3f0fb;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-ransform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .burger::after {
    bottom: 22%;
    width: 75%;
    height: 1px;
    background-color: #e3f0fb;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }

  .hero__inner-title {
    margin-bottom: 28px;
  }
  .hero__inner-main {
    padding-top: 120px;
  }

  .intro__inner-content {
    padding-top: 120px;
  }

  .blog {
    padding-top: 96.8px;
  }

  .post {
    padding-top: 96.8px;
  }
}
@media (max-width: 930px) {
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 40px;
  }
  h2.big {
    font-size: 45px;
  }

  h3.ex {
    font-size: 40px;
  }

  h4 {
    font-size: 20px;
  }

  .heading-4 {
    font-size: 20px;
  }

  .hero {
    padding-bottom: 60px;
  }
  .heroTop {
    position: relative;
    padding: 120px 0 60px;
  }
  .hero__bg::after {
    transform: translate(0);
    top: unset;
    bottom: -2px;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, rgba(13, 16, 25, 0) 13.94%, #0d1019 85.94%);
    opacity: 1;
    filter: unset;
    backdrop-filter: blur(3px);
  }
  .hero__bg::before {
    height: 100%;
    background: linear-gradient(0deg, rgba(13, 16, 25, 0.2), rgba(13, 16, 25, 0.2));
  }
  .hero__inner-main {
    padding: 0;
    margin: 0;
  }
  .hero__inner-main::before {
    display: none;
  }
  .hero__inner-title {
    width: 100%;
    max-width: unset;
    margin-bottom: 28px;
  }
  .hero__inner-text {
    width: 100%;
    max-width: unset;
    padding-top: 0;
    border-top: 0;
  }

  .proven {
    padding: 60px 0;
  }
  .provenItem {
    padding: 15px 0;
  }

  .growth {
    padding: 60px 0;
  }
  .growthItem__content {
    padding: 20px 10px;
  }
  .growthItem__content-title {
    font-size: 20px;
  }

  .join {
    padding: 20px 0;
  }
  .join.sm {
    padding: 20px 0 30px;
  }
  .join.sm .join__inner {
    padding: 92px 0;
  }
  .join__inner {
    padding: 120px 20px;
    min-height: unset;
  }
  .join__inner h2 br.mob {
    display: block;
  }

  .footer__inner-copy p {
    font-size: 14px;
  }
  .footer__inner-terms a {
    font-size: 14px;
    margin-right: 20px;
  }

  .intro__inner-content {
    padding-right: 0;
  }
  .intro__inner-title {
    margin-bottom: 20px;
  }

  .quote {
    margin: 0;
  }

  .about.sm .aboutItem {
    width: calc(50% - 20px);
  }
  .about.sm .aboutItem:nth-child(n)::before {
    display: block;
  }
  .about.sm .aboutItem:nth-child(n) .aboutItem__inner::after {
    display: block;
  }
  .about.sm .aboutItem:nth-child(n + 3)::before {
    display: none;
  }
  .about.sm .aboutItem:nth-child(even) .aboutItem__inner::after {
    display: none;
  }

  .trusted__inner {
    flex-direction: column;
    padding: 60px 0 110px;
  }
  .trusted__inner-row {
    width: 100%;
    justify-content: flex-start;
    margin: 0 -8px;
    flex-wrap: wrap;
  }
  .trusted__inner p {
    width: 100%;
    max-width: unset;
    margin-bottom: 46px;
  }
  .trustedLogo {
    width: 140px;
    margin: 8px;
  }
}
@media (max-width: 750px) {
  .auto__container {
    padding: 0 24px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 36px;
  }
  h2.big {
    font-size: 40px;
  }

  h3.ex {
    font-size: 36px;
  }

  h4 {
    font-size: 24px;
  }

  .heading-4 {
    font-size: 24px;
  }

  .suptitle {
    margin-bottom: 20px;
  }

  .proven__inner-row {
    flex-direction: column;
    margin: 0;
  }
  .proven__inner-row::before {
    display: none;
  }
  .proven__inner-content {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
  .proven__inner-content::before {
    display: none;
  }
  .proven__inner-content::after {
    display: none;
  }
  .provenImage {
    width: 100%;
    padding: 0;
  }
  .provenImage::before {
    display: none;
  }
  .provenImage::after {
    display: none;
  }
  .provenImage__inner {
    min-height: 335px;
  }
  .provenItem {
    padding: 20px 0 22px;
    margin: 0;
    border-top: 1px solid rgba(145, 160, 195, 0.2) !important;
  }

  .growth__inner-title {
    text-align: start;
  }
  .growth__inner-row {
    flex-direction: column;
  }
  .growth__inner-row::before {
    display: none;
  }
  .growth__inner-row::after {
    display: none;
  }
  .growthItem {
    width: 100%;
    padding: 20px;
    border-bottom: unset;
  }
  .growthItem:last-child {
    border-bottom: 1px solid rgba(145, 160, 195, 0.2);
  }
  .growthItem::before {
    position: absolute;
    top: 50%;
    left: 0;
    height: calc(100% - 40px);
    width: 1px;
    content: "";
    background: rgba(145, 160, 195, 0.2);
    transition: 0.3s ease;
    transform: translateY(-50%);
  }
  .growthItem::after {
    position: absolute;
    top: 50%;
    right: 0;
    height: calc(100% - 40px);
    width: 1px;
    content: "";
    background: rgba(145, 160, 195, 0.2);
    transition: 0.3s ease;
    transform: translateY(-50%);
  }
  .growthItem__content {
    padding: 20px;
  }
  .growthItem__content-title {
    height: unset;
    display: block;
    margin-bottom: 20px;
    font-size: 24px;
  }

  .footer {
    padding-top: 12px;
  }
  .footer__inner-row {
    flex-direction: column;
  }
  .footer__inner-row::before {
    display: none;
  }
  .footer__inner-col {
    width: 100%;
    max-width: unset;
    padding: 40px 0 32px;
  }
  .footer__inner-col::after {
    display: none;
  }
  .footer__inner-col:last-child {
    padding: 0;
  }
  .footer__inner-col:last-child::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: calc(100% - 64px);
    background: rgba(145, 160, 195, 0.2);
    content: "";
  }
  .footer__inner-col p {
    max-width: 450px;
  }
  .footer__inner-logo {
    margin-bottom: 20px;
  }
  .footer__inner-copy {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 0 24px;
  }
  .footer__inner-copy p {
    font-size: 16px;
  }
  .footer__inner-terms {
    order: -1;
    margin-bottom: 40px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__inner-terms a {
    margin: 0 0 16px 0;
  }
  .footerLinks__col {
    width: calc(50% - 20px);
    position: relative;
    padding: 32px 0;
  }
  .footerLinks__col:last-child::before {
    right: 0;
    left: unset;
  }
  .footerLinks__col:last-child::after {
    right: 0;
    left: unset;
  }
  .footerLinks__col::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: calc(100% + 10px);
    background: rgba(145, 160, 195, 0.2);
    content: "";
  }
  .footerLinks__col::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: calc(100% + 10px);
    background: rgba(145, 160, 195, 0.2);
    content: "";
  }
  .footerLinks__col a {
    margin-bottom: 16px;
  }

  .intro__bg::before {
    height: 54%;
    background: linear-gradient(180deg, rgba(13, 16, 25, 0) 13.94%, #0d1019 85.94%);
  }
  .intro__bg::after {
    background: rgba(13, 16, 25, 0.4);
  }
  .intro__inner::before {
    display: none;
  }
  .intro__inner::after {
    display: none;
  }
  .intro__inner-line {
    display: none;
  }
  .intro__inner-content {
    width: 100%;
  }
  .intro__inner-text {
    padding-top: 20px;
    border-top: 1px solid rgba(145, 160, 195, 0.2);
  }

  .about {
    padding: 60px 0;
  }
  .about.in-hero {
    padding: 0;
  }
  .about.in-hero .about__inner-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
  .about.sm .aboutItem {
    width: 100%;
  }
  .about.sm .aboutItem:nth-child(n)::before {
    display: block;
  }
  .about.sm .aboutItem:nth-child(n) .aboutItem__inner::after {
    display: block;
  }
  .about__inner-row {
    flex-direction: column;
  }
  .aboutItem {
    width: 100%;
    padding: 20px;
  }
  .aboutItem:nth-child(n + 3)::before {
    display: block;
  }
  .aboutItem:nth-child(even) .aboutItem__inner::after {
    display: block;
  }
  .aboutItem:last-child::after {
    display: block;
  }
  .aboutItem.empty {
    display: none;
  }
  .aboutItem::after {
    display: none;
  }
  .aboutItem__inner::before {
    position: absolute;
    top: 0;
    left: -20px;
    width: 1px;
    height: 100%;
    content: "";
    background: #91a0c3;
    opacity: 0.2;
    pointer-events: none;
  }
  .aboutItem__icon {
    margin-bottom: 20px;
  }
  .aboutItem .heading-4 {
    display: block;
    height: unset;
  }

  .story {
    padding: 60px 0;
  }
  .story__inner-title h2 br {
    display: none;
  }
  .story__inner-text.first {
    padding-top: 20px;
    border-top: 1px solid rgba(145, 160, 195, 0.2);
  }
  .story__inner-text p {
    font-size: 22px;
  }
  .story__inner-text p b {
    font-size: 28px;
  }

  .monitor {
    padding: 0;
  }
  .monitor__inner {
    flex-direction: column;
    padding: 60px 0;
  }
  .monitor__inner::before {
    bottom: 0;
    top: unset;
    left: 0;
    transform: translate(0);
    height: 1px;
    width: 100%;
  }
  .monitor__inner-content {
    width: 100%;
    margin-bottom: 40px;
    padding: 0;
  }
  .monitor__inner-content::after {
    display: none;
  }
  .monitorImage {
    width: 100%;
    padding: 0;
  }
  .monitorImage::after {
    display: none;
  }
  .monitorImage__table {
    width: calc(100% - 36px);
  }

  .quote {
    padding: 60px 0;
  }

  .blog__inner {
    padding: 24px 0 0;
    border: unset;
  }
  .blog__inner-title {
    margin-bottom: 60px;
  }
  .blog__inner-row {
    flex-direction: column;
  }
  .blog__inner-row::before {
    display: none;
  }
  .blog__inner-col {
    width: 100%;
  }
  .blogItem {
    border-top: unset;
  }
  .blogItem.big {
    border-top: 1px solid rgba(145, 160, 195, 0.2);
  }
  .blogItem .heading-4 {
    display: block;
    height: unset;
  }

  .category {
    padding: 60px 0 40px;
  }
  .categoryItem__image {
    width: 290px;
  }
  .categoryItem__content {
    width: calc(100% - 310px);
  }
  .categoryItem .heading-4 {
    font-size: 20px;
    line-height: 25px;
    height: 75px;
  }

  .post__inner {
    padding: 24px 0 0;
    border: unset;
  }
  .post__inner-title {
    padding: 0;
    border: unset;
  }
  .post__inner .breadcrumbs {
    margin-bottom: 20px;
  }
  .postItem {
    border-top: unset;
  }
  .postItem.big {
    border-top: 1px solid rgba(145, 160, 195, 0.2);
  }
  .postItem .heading-4 {
    display: block;
    height: unset;
  }

  .article__inner-content {
    margin-bottom: 60px;
  }
  .articleImage {
    margin-bottom: 60px;
  }
}
@media (max-width: 650px) {
  .hero__inner-row {
    margin: 28px 0 0;
  }
  .heroItem {
    width: 100%;
  }
  .heroItem:last-child::after {
    display: block;
  }
  .heroItem::before {
    width: 100%;
  }
  .heroItem::after {
    width: 100%;
    display: none;
  }
  .heroItem__inner::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: calc(100% - 40px);
    background: rgba(145, 160, 195, 0.2);
    content: "";
    transform: translateY(-50%);
  }

  .category {
    padding: 60px 0 0;
  }
  .categoryFilter {
    margin-bottom: 40px;
    padding: 0;
    border-bottom: unset;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .categoryFilter__selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
  }
  .categoryFilter__selected.show svg {
    transform: scaleY(-1);
  }
  .categoryFilter__selected span {
    width: 24px;
    height: 24px;
    display: flex;
  }
  .categoryFilter__selected span svg {
    width: 100%;
    height: 100%;
    color: #91a0c3;
    transition: 0.3s ease;
  }
  .categoryFilter__item {
    margin: 0 0 10px 0;
    padding: 6px 8px;
  }
  .categoryFilter__item:last-child {
    margin: 0;
  }
  .categoryFilter__list {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 10;
    background: #1e2230;
    padding: 20px;
    margin: 0;
    border-radius: 2px;
  }
  .categoryFilter__list.show {
    opacity: 1;
    visibility: visible;
  }
  .categoryItem {
    position: relative;
    background: transparent !important;
    margin: 0;
  }
  .categoryItem:hover .categoryItem__content {
    background: rgba(30, 34, 48, 0.4);
  }
  .categoryItem.active:first-child::before {
    display: none;
  }
  .categoryItem.active::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background: #91a0c3;
    opacity: 0.2;
    pointer-events: none;
  }
  .categoryItem:last-child::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background: #91a0c3;
    opacity: 0.2;
    pointer-events: none;
  }
  .categoryItem::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background: #91a0c3;
    opacity: 0.2;
    pointer-events: none;
  }
  .categoryItem__inner {
    flex-direction: column;
    padding: 20px;
    position: relative;
  }
  .categoryItem__inner::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 1px;
    height: calc(100% - 40px);
    content: "";
    background: #91a0c3;
    opacity: 0.2;
    pointer-events: none;
  }
  .categoryItem__inner::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: calc(100% - 40px);
    content: "";
    background: #91a0c3;
    opacity: 0.2;
    pointer-events: none;
  }
  .categoryItem__image {
    width: 100%;
  }
  .categoryItem__content {
    width: 100%;
    padding: 20px;
    transition: 0.3s ease;
  }
  .categoryItem__title {
    flex-direction: column;
  }
  .categoryItem .heading-4 {
    display: block;
    height: unset;
    font-size: 24px;
    line-height: 30px;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 540px) {
  h2.big {
    font-size: 36px;
  }

  .quote__inner {
    padding-top: 88px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .quote__inner-icon {
    position: absolute;
    top: 0;
    left: 0;
  }
  .quote__inner-top {
    order: 2;
    margin: 0;
  }
  .quote__inner-top p {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
  }
  .quote__inner-top p b {
    font-size: 20px;
    margin-bottom: 2px;
  }
  .quote__inner-text {
    margin-bottom: 40px;
  }
}
