@charset "UTF-8";
body {
  margin: 0;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

hr {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  overflow-x: hidden;
}

.site-main {
  margin: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding: 0;
}

article {
  display: block;
  margin: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding: 0;
}

section {
  display: block;
  margin: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding: 0;
}
@media (max-width: 900px) {
  section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-inline-start: auto;
  margin-inline-end: auto;
  padding: 0;
}

.site-header {
  z-index: 200;
  position: relative;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-branding__link {
  color: #262427;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: block;
  line-height: 0;
}
.site-branding__link:hover {
  opacity: 0.8;
}

.site-branding__logo {
  display: block;
  height: 25px;
  width: auto;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: #262427;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0;
}
.site-nav a:hover {
  opacity: 0.8;
}

.site-header__hamburger {
  display: none;
  appearance: none;
  background: none;
  border: none;
  padding: 0.5rem 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #262427;
}

.site-header__hamburger-inner {
  display: none;
}

.site-header__mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-position-y: 90px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
  overflow-y: auto;
}

.site-header__mobile-menu--open {
  visibility: visible;
  opacity: 1;
}

.site-header__mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
}

.site-header__mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.site-header__mobile-menu-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header__mobile-menu-label {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  color: #262427;
}

.site-header__mobile-menu-logo {
  display: block;
  line-height: 0;
}
.site-header__mobile-menu-logo img {
  display: block;
  height: 25px;
  width: auto;
}

.site-header__mobile-menu-close {
  appearance: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: #262427;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.site-header__mobile-menu-close:hover {
  opacity: 0.8;
}

.site-header__mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding-top: 0.5rem;
  padding-left: 40px;
}

.site-header__mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  max-width: 300px;
}
.site-header__mobile-menu-list li {
  width: 100%;
}
.site-header__mobile-menu-list a {
  display: inline-block;
  padding: 2px 6px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  color: #262427;
  background: transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.site-header__mobile-menu-list li.is-in-view a,
.site-header__mobile-menu-list a:hover {
  background: #9334ff;
  color: #fff;
}

.site-header__mobile-menu-social {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 300px;
  margin-top: 50px;
  padding-bottom: 0.5rem;
  padding-left: 40px;
}

.site-header__mobile-menu-social-link {
  display: block;
  line-height: 0;
}
.site-header__mobile-menu-social-link img {
  display: block;
  width: 32px;
  height: 32px;
}

@media (max-width: 900px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 300;
  }
  .site-header__inner {
    position: relative;
  }
  .site-main {
    padding-top: 80px;
  }
  .site-nav {
    display: none;
  }
  .site-header__hamburger {
    display: flex;
  }
}
@media (min-width: 901px) {
  .site-header__mobile-menu {
    display: none;
  }
}
.hero {
  position: relative;
  min-height: 740px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  margin-top: -90px;
}

@media (min-width: 599px) {
  .hero {
    background-image: url("../images/hero-bg.png") !important;
  }
}
.hero__container {
  position: relative;
  z-index: 1;
}

.hero__content {
  text-align: center;
  margin: 0 auto;
}

.hero__title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 96px;
  line-height: 90%;
  color: #262427;
  margin: 0 0 0.625rem;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 48px;
  }
}

.hero__subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  line-height: 31px;
  color: #262427;
  font-weight: 400;
  margin: 0 0 1.5rem;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.hero__feature {
  font-family: "Geist", sans-serif;
  font-size: 11px;
  line-height: 1;
  color: #8f739d;
  font-weight: 500;
  letter-spacing: 0;
}
.hero__feature--divider {
  width: 1px;
  height: 43px;
  padding: 0;
  background: rgba(143, 115, 157, 0.2);
  border-radius: 23px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.0625rem;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 12px;
  letter-spacing: 0;
}
.hero__btn:hover {
  opacity: 0.9;
}
.hero__btn--primary {
  background: #9334ff;
  color: #f9f8fc;
}
.hero__btn--secondary {
  color: #262427;
  background: transparent;
  gap: 4px;
}
.hero__btn--secondary::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--hero-btn-arrow) center/contain no-repeat;
}

@media (max-width: 900px) {
  .hero__content {
    text-align: left;
    align-items: flex-start;
    width: 100%;
  }
  .hero__title {
    font-size: 56px;
    line-height: 90%;
  }
  .hero__subtitle {
    color: #262427;
    font-size: 20px;
    line-height: 120%;
    font-weight: 400;
  }
  .hero__features {
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero__features::-webkit-scrollbar {
    display: none;
  }
  .hero__feature {
    font-size: 11px;
    color: #8F739D;
    flex-shrink: 0;
    max-width: 20%;
  }
  .hero__feature--divider {
    height: 43px;
    width: 1px;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .hero__btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    max-width: 280px;
  }
  .hero__btn--secondary {
    background: #fff;
    border: 1px solid #d1d5db;
    color: #1e1e1e;
  }
}
.about-section {
  padding: 150px 20px 75px;
}

.about-section__container {
  overflow: hidden;
}

.about-section__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.about-section__content {
  display: flex;
  flex-direction: column;
  gap: 3.1875rem;
  max-width: 898px;
}

.about-section__label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.about-section__dot {
  width: 5px;
  height: 5px;
  background: #262427;
  border-radius: 7px;
  flex-shrink: 0;
}

.about-section__num {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.52px;
  line-height: 1;
  color: #262427;
}

.about-section__title {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.52px;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.6);
}

.about-section__text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-section__headline {
  font-family: "Outfit", sans-serif;
  font-size: 90px;
  line-height: 0.96;
  font-weight: 700;
  color: #262427;
  margin: 0;
  letter-spacing: 0;
}
@media (max-width: 900px) {
  .about-section__headline {
    font-size: 48px;
  }
}

.about-section__body {
  font-family: "Geist", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 25.2px;
  letter-spacing: -0.36px;
  color: rgba(23, 23, 23, 0.6);
  margin: 0;
  max-width: 840px;
}

.about-section__card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 302px;
  min-height: 492px;
  background-color: #f9f8fc;
  background-image: url("../images/digital-asset-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  overflow: hidden;
}

.about-section__card-overlay {
  position: absolute;
  inset: 0;
  background: #9334ff;
  mix-blend-mode: hue;
  opacity: 0.15;
  pointer-events: none;
}

.about-section__card-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(249, 248, 252, 0.48);
  pointer-events: none;
}

.about-section__card-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  z-index: 1;
  display: none;
}

.about-section__card-big {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  font-family: "Geist", sans-serif;
  font-size: 185px;
  font-weight: 500;
  line-height: 1;
  color: #262427;
  pointer-events: none;
  z-index: 0;
}

.about-section__card-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-section__card-title {
  font-family: "Geist", sans-serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  color: #262427;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0;
  max-width: 200px;
}

.about-section__card-desc {
  font-family: "Geist", sans-serif;
  font-size: 12px;
  line-height: 1.28;
  font-weight: 500;
  color: rgba(23, 23, 23, 0.6);
  margin: 0;
}

@media (max-width: 1024px) {
  .about-section__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .about-section__card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 900px) {
  .about-section {
    padding: 2.5rem 0 3rem;
  }
  .about-section__content {
    gap: 1.5rem;
  }
  .about-section__text {
    gap: 1.5rem;
  }
  .about-section__headline {
    font-size: 53px;
    line-height: 100%;
    font-weight: 600;
  }
  .about-section__body {
    font-size: 1rem;
  }
  .about-section__card {
    max-width: none;
    padding: 0;
  }
  .about-section__card-big {
    font-size: 160px;
    top: 30%;
  }
  .about-section__card-content {
    padding: 2rem 1.5rem;
  }
  .about-section__card-title {
    font-size: 1.25rem;
    padding-top: 200px;
  }
  .about-section__card-desc {
    font-size: 0.875rem;
  }
}
/* Tablet only: big “0” left, copy right, same row */
@media (min-width: 441px) and (max-width: 900px) {
  .about-section__card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    min-height: 0;
    width: 100%;
    max-width: none;
    padding: 4.75rem 2rem;
    box-sizing: border-box;
    background-image: url("../images/digital-assestbg-tablet.webp");
    background-size: cover;
    background-position: center;
  }
  .about-section__card-border {
    display: none;
  }
  .about-section__card-big {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 190px;
    line-height: 1;
    z-index: 1;
  }
  .about-section__card-content {
    margin-top: 0;
    padding: 0;
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    min-width: 0;
    box-sizing: border-box;
    justify-content: center;
  }
  .about-section__card-title {
    padding-top: 0;
    max-width: none;
    max-width: 200px;
  }
  .about-section__card-desc {
    max-width: 220px;
  }
}
@media (max-width: 490px) {
  .about-section__headline {
    font-size: 51px;
  }
  .about-section__headline br {
    display: none;
  }
}
.why-section {
  padding: 5rem 20px;
}

.why-section__container {
  background: #f9f8fc;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.why-section__inner {
  display: flex;
  align-items: stretch;
  min-height: 600px;
  background-image: var(--why-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-section__left {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 50px;
  left: 50px;
  max-width: 570px;
  z-index: 2;
}

.why-section__right {
  display: flex;
  width: 100%;
  position: relative;
}

.why-section__label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 1.5rem;
}

.why-section__dot {
  width: 5px;
  height: 5px;
  background: #262427;
  border-radius: 7px;
  flex-shrink: 0;
}

.why-section__num {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.52px;
  line-height: 1;
  color: #262427;
}

.why-section__title {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.52px;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.6);
}

.why-section__headline {
  font-family: "Outfit", sans-serif;
  font-size: 44px;
  line-height: 1.02;
  font-weight: 700;
  color: #262427;
  margin: 0;
  letter-spacing: 0;
  text-transform: uppercase;
}

.why-section__features {
  display: flex;
  flex: 1;
  max-width: 70%;
  padding: 0 50px;
}

.why-section__feature-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin: 1rem 0;
}

.why-section__feature {
  display: flex;
  align-items: flex-start;
  flex: 1;
  border-right: none;
  padding-left: 37px;
  padding-right: 37px;
  gap: 24px;
  padding-top: 50px;
}
.why-section__feature:last-child {
  border-right: none;
}
.why-section__feature:first-child {
  padding-left: 0;
}

.why-section__roman {
  font-family: "Geist", sans-serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 600;
  color: #262427;
  flex-shrink: 0;
}

.why-section__feature-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 170px;
}

.why-section__feature-title {
  font-family: "Geist", sans-serif;
  font-size: 14px;
  line-height: 1.28;
  font-weight: 500;
  color: #262427;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.6;
}

.why-section__feature-caption {
  font-family: "Geist", sans-serif;
  font-size: 12px;
  line-height: 1.28;
  font-weight: 500;
  color: rgba(23, 23, 23, 0.4);
  margin: 0;
  max-width: 110px;
}

.why-section__image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(147, 52, 255, 0.25) 100%);
  pointer-events: none;
}

.why-section__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(249, 248, 252, 0.2);
  pointer-events: none;
}

@media (max-width: 900px) {
  .why-section {
    padding: 2.5rem 0 3rem;
  }
  .why-section__inner {
    flex-direction: column;
    min-height: 1100px;
    gap: 0;
    background-image: url("../images/operational-bg-tablet.webp") !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .why-section__right {
    width: 100%;
    min-width: 0;
    display: contents;
  }
  .why-section__left {
    display: contents;
    max-width: none;
    position: unset;
  }
  .why-section__label {
    order: 1;
    padding: 0 15px;
    padding-top: 30px;
  }
  .why-section__headline {
    order: 2;
    font-size: 1.5rem;
    line-height: 1.25;
    max-width: 290px;
    padding: 0 15px;
    margin-top: 0;
  }
  .why-section__features {
    order: 3;
    padding: 0;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    flex: 0;
  }
  .why-section__image-gradient {
    order: 4;
    min-height: 320px;
  }
  .why-section__feature {
    padding: 1.25rem 1.25rem !important;
    gap: 1rem;
    flex: 0;
  }
  .why-section__roman {
    font-size: 2rem;
  }
  .why-section__feature-title {
    font-size: 0.875rem;
  }
  .why-section__feature-caption {
    font-size: 0.8125rem;
  }
}
.who-section {
  padding: 5rem 20px;
}

.who-section__container {
  display: flex;
  flex-direction: column;
  gap: 3.1875rem;
}

.who-section__top {
  display: flex;
  flex-direction: column;
  gap: 3.1875rem;
}

.who-section__label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.who-section__dot {
  width: 5px;
  height: 5px;
  background: #262427;
  border-radius: 7px;
  flex-shrink: 0;
}

.who-section__num {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.52px;
  line-height: 1;
  color: #262427;
}

.who-section__title {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.52px;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.6);
}

.who-section__header {
  display: flex;
  gap: 3.1875rem;
}

.who-section__headline {
  font-family: "Outfit", sans-serif;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: #262427;
  margin: 0;
  flex: 0 0 auto;
  max-width: 629px;
}

.who-section__intro {
  font-family: "Geist", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 25.2px;
  letter-spacing: -0.36px;
  color: rgba(23, 23, 23, 0.6);
  margin: 0;
  max-width: 393px;
}

.who-section__grid {
  display: flex;
  flex-wrap: wrap;
  border-radius: 16px;
  overflow: hidden;
  background: #f9f8fc;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.07);
}

.who-section__card {
  display: flex;
  flex-direction: column;
  flex: 1 1 33.333%;
  min-width: 280px;
  min-height: 230px;
  padding: 2.25rem 2.25rem 2rem;
  background: #f9f8fc;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-sizing: border-box;
}
.who-section__card:nth-child(3n) {
  border-right: none;
}
.who-section__card:nth-last-child(-n+3) {
  border-bottom: none;
}

.who-section__card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 50px;
  flex-shrink: 0;
}
.who-section__card-icon img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.who-section__card-title {
  font-family: "Geist", sans-serif;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #262427;
  margin: 0 0 0.5rem;
}

.who-section__card-desc {
  font-family: "Geist", sans-serif;
  font-size: 12px;
  line-height: 1.28;
  font-weight: 500;
  color: rgba(23, 23, 23, 0.4);
  margin: 0;
  letter-spacing: 0;
  max-width: 250px;
}

@media (max-width: 900px) {
  .who-section {
    padding: 2.5rem 0 3rem;
  }
  .who-section__container {
    gap: 2rem;
  }
  .who-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .who-section__headline {
    font-size: 32px;
    line-height: 110%;
  }
  .who-section__intro {
    max-width: none;
    font-size: 1rem;
  }
  .who-section__grid {
    border-radius: 12px;
    overflow: hidden;
  }
  .who-section__card {
    flex: 1 1 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    min-width: 0;
    min-height: 0;
    padding: 1.5rem 1.25rem;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }
  .who-section__card:last-child {
    border-bottom: none;
  }
  .who-section__card-icon {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
  }
  .who-section__card-icon img {
    width: 48px;
    height: 48px;
  }
  .who-section__card-title {
    font-size: 13px;
  }
  .who-section__card-desc {
    font-size: 0.8125rem;
  }
}
.solutions-section {
  padding: 5rem 20px;
}

.solutions-section__container {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.solutions-section__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.solutions-section__heading {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 781px;
}

.solutions-section__label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.solutions-section__dot {
  width: 5px;
  height: 5px;
  background: #262427;
  border-radius: 7px;
  flex-shrink: 0;
}

.solutions-section__num {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.52px;
  line-height: 1;
  color: #262427;
}

.solutions-section__title {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.52px;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.6);
}

.solutions-section__headline {
  font-family: "Outfit", sans-serif;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: #262427;
  margin: 0;
}

.solutions-section__tagline-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.solutions-section__tagline {
  font-family: "Geist", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.22px;
  text-transform: uppercase;
  text-align: right;
  color: rgba(23, 23, 23, 0.6);
  margin: 0;
}

.solutions-section__logo-square {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.solutions-section__mac-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 -2rem;
}

.solutions-section__mac {
  display: block;
  max-width: 100%;
  width: 940px;
  height: auto;
  object-fit: contain;
}

.solutions-section__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.solutions-section__card {
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  min-width: 280px;
  padding: 2rem 1.75rem 2rem;
  border: 2px solid rgb(249, 248, 252);
  border-radius: 30px;
  background: #fff;
  box-sizing: border-box;
}

.solutions-section__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.solutions-section__card-num {
  font-family: "Geist", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.22px;
  line-height: 1;
  color: rgba(23, 23, 23, 0.25);
  text-transform: uppercase;
}

.solutions-section__card-cat {
  font-family: "Geist", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  color: #000;
}

.solutions-section__card-title {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 0.75rem;
  letter-spacing: 0;
  text-align: center;
}

.solutions-section__card-desc {
  font-family: "Geist", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #707070;
  margin: 0 0 1.5rem;
  margin-bottom: 0;
  letter-spacing: 0;
  text-align: center;
}

.solutions-section__card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
  text-decoration: none;
  color: #262427;
  margin-top: auto;
  padding: 0.625rem 0;
  border-radius: 10px;
  transition: opacity 0.2s;
}
.solutions-section__card-link:hover {
  opacity: 0.8;
}
.solutions-section__card-link img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.solutions-section__card-link--soon {
  color: #a59cae;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 900px) {
  .solutions-section {
    padding: 2.5rem 0 3rem;
  }
  .solutions-section__container {
    gap: 2rem;
  }
  .solutions-section__top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .solutions-section__headline {
    font-size: 32px;
    line-height: 110%;
  }
  .solutions-section__headline br:first-child {
    display: none;
  }
  .solutions-section__tagline-wrap {
    flex-direction: row-reverse;
    align-items: center;
  }
  .solutions-section__tagline {
    text-align: left;
    color: #262427;
    line-height: 110%;
  }
  .solutions-section__mac-wrap {
    margin: 30px 0 0;
  }
  .solutions-section__mac-wrap img {
    max-width: 100%;
  }
  .solutions-section__cards {
    flex-direction: column;
    gap: 1.5rem;
  }
  .solutions-section__card {
    min-width: 0;
    text-align: center;
    align-items: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }
  .solutions-section__card-meta {
    width: 100%;
  }
  .solutions-section__card-title,
  .solutions-section__card-desc {
    text-align: center;
  }
  .solutions-section__card-link {
    justify-content: center;
  }
}
.treasury-section {
  padding: 5rem 20px;
}

.treasury-section__container {
  overflow: hidden;
}

.treasury-section__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.treasury-section__content {
  display: flex;
  flex-direction: column;
  gap: 3.1875rem;
  max-width: 586px;
}

.treasury-section__label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.treasury-section__dot {
  width: 5px;
  height: 5px;
  background: #262427;
  border-radius: 7px;
  flex-shrink: 0;
}

.treasury-section__num {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.52px;
  line-height: 1;
  color: #262427;
}

.treasury-section__title {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.52px;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.6);
}

.treasury-section__headline {
  font-family: "Outfit", sans-serif;
  font-size: 90px;
  line-height: 0.96;
  font-weight: 700;
  color: #262427;
  margin: 0;
}
@media (max-width: 900px) {
  .treasury-section__headline {
    font-size: 48px;
  }
}

.treasury-section__headline-accent {
  color: #9334ff;
}

.treasury-section__body {
  font-family: "Geist", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 25.2px;
  letter-spacing: -0.36px;
  color: rgba(23, 23, 23, 0.6);
  margin: 0;
  max-width: 374px;
}

.treasury-section__visual {
  width: 50%;
  max-width: 100%;
}

.treasury-section__visual-inner {
  display: flex;
  flex-direction: column;
  background: #f9f8fc;
  border-radius: 16px;
  overflow: hidden;
  padding: 70px;
}

.treasury-section__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 100%;
  transition: opacity 0.2s;
}

.treasury-section__cta {
  font-family: "Geist", sans-serif;
  font-size: 24px;
  line-height: 100%;
  font-weight: 600;
  text-transform: uppercase;
  color: #262427;
  margin: 35px 0 0;
  letter-spacing: 0;
}

.treasury-section__preview {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.treasury-section__preview:hover .treasury-section__img, .treasury-section__preview:focus-visible .treasury-section__img {
  opacity: 0.92;
}
.treasury-section__preview:focus-visible {
  outline: 2px solid #9334ff;
  outline-offset: 4px;
}

.treasury-video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  box-sizing: border-box;
}
.treasury-video-lightbox[hidden] {
  display: none !important;
}
.treasury-video-lightbox:not([hidden]) {
  display: flex;
}

.treasury-video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.treasury-video-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(85vh, 100%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: auto;
}

.treasury-video-lightbox__close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.treasury-video-lightbox__close:hover, .treasury-video-lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.28);
}
.treasury-video-lightbox__close:focus-visible {
  outline: 2px solid #9334ff;
  outline-offset: 2px;
}
@media (max-width: 600px) {
  .treasury-video-lightbox__close {
    top: auto;
    bottom: calc(100% + 0.75rem);
    right: 0;
  }
}

.treasury-video-lightbox__video {
  display: block;
  width: 100%;
  max-height: min(75vh, 70vw);
  height: auto;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.book-demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100001;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  box-sizing: border-box;
}
.book-demo-modal[hidden] {
  display: none !important;
}
.book-demo-modal:not([hidden]) {
  display: flex;
}

.book-demo-modal__backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background-color: rgba(187, 156, 225, 0.631372549);
  opacity: 0.65;
  backdrop-filter: blur(8px);
}

.book-demo-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100vw - 2rem);
  max-height: min(92vh, 100%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(80, 60, 120, 0.08), 0 32px 80px rgba(40, 20, 80, 0.12);
  overflow: hidden;
  max-width: 880px;
}
@media (max-width: 768px) {
  .book-demo-modal__dialog {
    border-radius: 0;
  }
}

.book-demo-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ebebed;
  color: #111;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}
.book-demo-modal__close:hover, .book-demo-modal__close:focus-visible {
  background: #e0e0e4;
}
.book-demo-modal__close:focus-visible {
  outline: 2px solid #9b4dff;
  outline-offset: 2px;
}

.book-demo-modal__inner {
  padding: 80px 60px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-family: "Geist", sans-serif;
  color: #262427;
}
.book-demo-modal__inner p {
  color: #747474;
  text-align: center;
  font-family: Geist;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.book-demo-modal__inner .wpcf7 {
  margin: 0;
}
.book-demo-modal__inner fieldset.hidden-fields-container {
  display: contents;
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.book-demo-modal__inner form.book-demo-cf7 > div:not(.wpcf7-response-output):not(.vault-popup-form),
.book-demo-modal__inner form.wpcf7-form > div:not(.wpcf7-response-output):not(.vault-popup-form) {
  display: flex;
  flex-direction: column;
}
.book-demo-modal__inner form.book-demo-cf7,
.book-demo-modal__inner form.wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: end;
  margin: 0;
  padding: 0;
}
.book-demo-modal__inner form.book-demo-cf7 > .vault-popup-form,
.book-demo-modal__inner form.wpcf7-form > .vault-popup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: end;
  flex: 0 0 100%;
  width: 100%;
}
.book-demo-modal__inner form.book-demo-cf7 > h1,
.book-demo-modal__inner form.book-demo-cf7 > h2,
.book-demo-modal__inner form.book-demo-cf7 > h3,
.book-demo-modal__inner form.wpcf7-form > h1,
.book-demo-modal__inner form.wpcf7-form > h2,
.book-demo-modal__inner form.wpcf7-form > h3 {
  flex: 0 0 100%;
  margin: 0 3rem 0 0;
  max-width: 14ch;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000000;
}
.book-demo-modal__inner form.book-demo-cf7 > p:not(:has(.wpcf7-form-control-wrap)):not(:has(input[type=submit])),
.book-demo-modal__inner form.wpcf7-form > p:not(:has(.wpcf7-form-control-wrap)):not(:has(input[type=submit])) {
  flex: 0 0 100%;
  margin: -1rem 3rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #6b6b76;
}
.book-demo-modal__inner .vault-popup-form__top {
  max-width: 250px;
}
.book-demo-modal__inner .vault-popup-form__top .vault-popup-form__heading {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .book-demo-modal__inner .vault-popup-form__top .vault-popup-form__heading {
    margin-bottom: 30px;
  }
}
.book-demo-modal__inner .vault-popup-form__top .vault-popup-form__heading h2 {
  color: #262427;
  font-family: Geist;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.book-demo-modal__inner .vault-popup-form__top .vault-popup-form__heading p {
  color: rgba(23, 23, 23, 0.6);
  font-family: Geist;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  text-align: left;
}
.book-demo-modal__inner .vault-popup-form__grid {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px 20px;
  margin-bottom: 60px;
}
.book-demo-modal__inner .vault-popup-form__grid .vault-field {
  width: calc((100% - 3rem) / 3);
}
@media (max-width: 768px) {
  .book-demo-modal__inner .vault-popup-form__grid .vault-field {
    width: 100%;
    gap: 25px 20px;
  }
}
@media (max-width: 768px) {
  .book-demo-modal__inner .vault-popup-form__grid {
    flex-direction: column;
    gap: 0;
    margin-bottom: 10px;
  }
}
.book-demo-modal__inner form.book-demo-cf7 > p:has(.wpcf7-form-control-wrap),
.book-demo-modal__inner form.wpcf7-form > p:has(.wpcf7-form-control-wrap) {
  flex: 0 0 calc((100% - 3rem) / 3);
  margin: 0;
}
.book-demo-modal__inner .vault-popup-form > p:has(.wpcf7-form-control-wrap),
.book-demo-modal__inner .vault-popup-form > .vault-popup-form__field {
  flex: 0 0 calc((100% - 3rem) / 3);
  margin: 0;
}
.book-demo-modal__inner form.book-demo-cf7 > p:has(textarea),
.book-demo-modal__inner form.wpcf7-form > p:has(textarea) {
  flex-basis: 100%;
}
.book-demo-modal__inner form.book-demo-cf7 > p:has(input[type=submit]),
.book-demo-modal__inner form.wpcf7-form > p:has(input[type=submit]) {
  flex: 0 0 100%;
  align-self: flex-start;
  margin: 0.75rem 0 0;
  padding: 0;
}
.book-demo-modal__inner .vault-popup-form > p:has(input[type=submit]),
.book-demo-modal__inner .vault-popup-form > .vault-popup-form__submit {
  flex: 0 0 100%;
  align-self: flex-start;
  margin: 0.75rem 0 0;
  padding: 0;
}
.book-demo-modal__inner .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.book-demo-modal__inner input[type=text],
.book-demo-modal__inner input[type=email],
.book-demo-modal__inner input[type=tel],
.book-demo-modal__inner input[type=url],
.book-demo-modal__inner input[type=number],
.book-demo-modal__inner textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.65rem 0 0.85rem;
  border: none;
  border-bottom: 1px solid #d8d8de;
  border-radius: 0;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
  color: #000000;
  transition: border-color 0.2s, color 0.2s;
  font-size: 14px;
}
.book-demo-modal__inner input[type=text]::placeholder,
.book-demo-modal__inner input[type=email]::placeholder,
.book-demo-modal__inner input[type=tel]::placeholder,
.book-demo-modal__inner input[type=url]::placeholder,
.book-demo-modal__inner input[type=number]::placeholder,
.book-demo-modal__inner textarea::placeholder {
  color: #9a9aa3;
  opacity: 1;
}
.book-demo-modal__inner input[type=text]:hover,
.book-demo-modal__inner input[type=email]:hover,
.book-demo-modal__inner input[type=tel]:hover,
.book-demo-modal__inner input[type=url]:hover,
.book-demo-modal__inner input[type=number]:hover,
.book-demo-modal__inner textarea:hover {
  border-bottom-color: #c4c4cc;
}
.book-demo-modal__inner input[type=text]:focus,
.book-demo-modal__inner input[type=email]:focus,
.book-demo-modal__inner input[type=tel]:focus,
.book-demo-modal__inner input[type=url]:focus,
.book-demo-modal__inner input[type=number]:focus,
.book-demo-modal__inner textarea:focus {
  outline: none;
  border-bottom-color: #000000;
  border-bottom-width: 2px;
  padding-bottom: calc(0.85rem - 1px);
}
.book-demo-modal__inner textarea {
  min-height: 4rem;
  resize: vertical;
}
.book-demo-modal__inner select.wpcf7-form-control,
.book-demo-modal__inner select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.65rem 1.75rem 0.85rem 0;
  border: none;
  border-bottom: 1px solid #d8d8de;
  border-radius: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239a9aa3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.book-demo-modal__inner select.wpcf7-form-control:hover,
.book-demo-modal__inner select:hover {
  border-bottom-color: #c4c4cc;
}
.book-demo-modal__inner select.wpcf7-form-control:focus,
.book-demo-modal__inner select:focus {
  outline: none;
  border-bottom-color: #000000;
  border-bottom-width: 2px;
  padding-bottom: calc(0.85rem - 1px);
}
.book-demo-modal__inner select.wpcf7-form-control:invalid,
.book-demo-modal__inner select.wpcf7-form-control option[value=""],
.book-demo-modal__inner select:invalid,
.book-demo-modal__inner select option[value=""] {
  color: #9a9aa3;
}
.book-demo-modal__inner form.book-demo-cf7 label:has(.wpcf7-form-control-wrap):not(:has(input[type=checkbox])):not(:has(input[type=radio])),
.book-demo-modal__inner form.wpcf7-form label:has(.wpcf7-form-control-wrap):not(:has(input[type=checkbox])):not(:has(input[type=radio])) {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
}
.book-demo-modal__inner form.book-demo-cf7 label:has(.wpcf7-form-control-wrap):not(:has(input[type=checkbox])):not(:has(input[type=radio])) br,
.book-demo-modal__inner form.wpcf7-form label:has(.wpcf7-form-control-wrap):not(:has(input[type=checkbox])):not(:has(input[type=radio])) br {
  display: none;
}
.book-demo-modal__inner form.book-demo-cf7 label:has(.wpcf7-form-control-wrap) .wpcf7-form-control-wrap,
.book-demo-modal__inner form.wpcf7-form label:has(.wpcf7-form-control-wrap) .wpcf7-form-control-wrap {
  font-size: 1rem;
  line-height: 1.4;
}
.book-demo-modal__inner p {
  position: relative;
}
.book-demo-modal__inner input.wpcf7-submit,
.book-demo-modal__inner .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  margin: 0;
  padding: 0.9rem 2.25rem;
  border: none;
  border-radius: 12px;
  background: #9b4dff;
  color: #fff;
  font-family: Outfit;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0;
}
.book-demo-modal__inner input.wpcf7-submit:hover, .book-demo-modal__inner input.wpcf7-submit:focus-visible,
.book-demo-modal__inner .wpcf7-submit:hover,
.book-demo-modal__inner .wpcf7-submit:focus-visible {
  background: #8a3fe6;
}
.book-demo-modal__inner input.wpcf7-submit:focus-visible,
.book-demo-modal__inner .wpcf7-submit:focus-visible {
  outline: 2px solid #9b4dff;
  outline-offset: 3px;
}
.book-demo-modal__inner input.wpcf7-submit:disabled,
.book-demo-modal__inner .wpcf7-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .book-demo-modal__inner input.wpcf7-submit,
  .book-demo-modal__inner .wpcf7-submit {
    width: 100%;
  }
}
.book-demo-modal__inner .wpcf7-spinner {
  margin-left: 0.5rem;
  display: none;
}
.book-demo-modal__inner .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0.25rem;
  font-size: 12px;
  line-height: 1.3;
  color: #c62828;
}
.book-demo-modal__inner .wpcf7-response-output {
  flex: 0 0 100%;
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.4;
  display: none;
}
.book-demo-modal__inner .wpcf7-mail-sent-ok {
  background: rgba(46, 125, 50, 0.08);
  color: #1b5e20;
  border: 1px solid rgba(46, 125, 50, 0.25);
}
.book-demo-modal__inner .wpcf7-validation-errors,
.book-demo-modal__inner .wpcf7-acceptance-missing {
  background: rgba(198, 40, 40, 0.06);
  color: #b71c1c;
  border: 1px solid rgba(198, 40, 40, 0.2);
}
@media (max-width: 600px) {
  .book-demo-modal__inner {
    padding: 2rem 1.5rem 1.75rem;
    padding-top: 2.75rem;
  }
  .book-demo-modal__inner form.book-demo-cf7,
  .book-demo-modal__inner form.wpcf7-form {
    gap: 1.5rem;
  }
  .book-demo-modal__inner form.book-demo-cf7 > .vault-popup-form,
  .book-demo-modal__inner form.wpcf7-form > .vault-popup-form {
    gap: 1.5rem;
  }
}
@media (max-width: 600px) and (max-width: 768px) {
  .book-demo-modal__inner form.book-demo-cf7 > .vault-popup-form,
  .book-demo-modal__inner form.wpcf7-form > .vault-popup-form {
    gap: 0;
  }
}
@media (max-width: 600px) {
  .book-demo-modal__inner form.book-demo-cf7 > p:has(.wpcf7-form-control-wrap),
  .book-demo-modal__inner form.wpcf7-form > p:has(.wpcf7-form-control-wrap),
  .book-demo-modal__inner .vault-popup-form > p:has(.wpcf7-form-control-wrap),
  .book-demo-modal__inner .vault-popup-form > .vault-popup-form__field,
  .book-demo-modal__inner .vault-popup-form > * {
    flex-basis: 100% !important;
  }
  .book-demo-modal__inner form.book-demo-cf7 > h1,
  .book-demo-modal__inner form.book-demo-cf7 > h2,
  .book-demo-modal__inner form.book-demo-cf7 > h3,
  .book-demo-modal__inner form.wpcf7-form > h1,
  .book-demo-modal__inner form.wpcf7-form > h2,
  .book-demo-modal__inner form.wpcf7-form > h3 {
    max-width: none;
    margin-right: 2.5rem;
  }
  .book-demo-modal__inner form.book-demo-cf7 > p:not(:has(.wpcf7-form-control-wrap)):not(:has(input[type=submit])),
  .book-demo-modal__inner form.wpcf7-form > p:not(:has(.wpcf7-form-control-wrap)):not(:has(input[type=submit])) {
    margin-top: -0.5rem;
    margin-right: 0;
  }
}

.book-demo-modal__thank-you {
  display: flex;
  flex-direction: column;
  padding: 80px 60px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(82%, 560px) auto;
  background-image: var(--book-demo-thank-you-bg);
}
@media (max-width: 768px) {
  .book-demo-modal__thank-you {
    min-height: 550px;
    max-height: 550px;
    padding: 100px 0 0;
    background-position: 0 40px;
    background-image: var(--book-demo-thank-you-bg-mobile, var(--book-demo-thank-you-bg));
    justify-content: flex-start;
  }
}

.book-demo-modal__form-view[hidden],
.book-demo-modal__thank-you[hidden] {
  display: none !important;
}

.book-demo-modal__thank-you-title {
  color: #262427;
  text-align: center;
  font-family: Outfit;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
@media (max-width: 768px) {
  .book-demo-modal__thank-you-title {
    font-size: 44px;
  }
}

.book-demo-modal__thank-you-text {
  margin: 30px 0 0;
  max-width: 330px;
  font-family: "Geist", sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.1rem);
  line-height: 1.42;
  color: #6b6b76;
}
@media (max-width: 768px) {
  .book-demo-modal__thank-you-text {
    font-size: 16px;
  }
}

.book-demo-modal__thank-you-btn {
  font-family: Outfit;
  font-style: normal;
  margin-top: 2.35rem;
  padding: 18px 60px;
  border: none;
  border-radius: 16px;
  background: #9b4dff;
  color: #F9F8FC;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: -0.32px;
}
.book-demo-modal__thank-you-btn:hover, .book-demo-modal__thank-you-btn:focus-visible {
  background: #8a3fe6;
}
.book-demo-modal__thank-you-btn:focus-visible {
  outline: 2px solid #9b4dff;
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .treasury-section__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .treasury-section__content {
    max-width: none;
  }
  .treasury-section__visual {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .treasury-section {
    padding: 2.5rem 0 3rem;
  }
  .treasury-section__content {
    gap: 1.5rem;
  }
  .treasury-section__headline {
    font-size: 56px;
    line-height: 80%;
    font-weight: 600;
  }
  .treasury-section__headline br {
    display: none;
  }
  .treasury-section__body {
    font-size: 16px;
  }
  .treasury-section__visual {
    border-radius: 12px;
    overflow: hidden;
  }
  .treasury-section__visual-inner {
    min-height: 280px;
    padding: 30px 0;
  }
  .treasury-section__cta {
    font-size: 16px;
  }
}
.capabilities-section {
  padding: 5rem 0;
  background: #fff;
}

.capabilities-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.capabilities-section__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.capabilities-section__dot {
  width: 5px;
  height: 5px;
  background: #262427;
  border-radius: 7px;
  flex-shrink: 0;
}

.capabilities-section__num {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.52px;
  line-height: 1;
  color: #262427;
}

.capabilities-section__title {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.52px;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.6);
}

.capabilities-section__headline {
  font-family: "Outfit", sans-serif;
  font-size: 96px;
  line-height: 0.9;
  font-weight: 700;
  color: #262427;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .capabilities-section__headline {
    font-size: 48px;
    font-weight: 600;
  }
}

.capabilities-section__slider-wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  overflow: hidden;
  margin: 0 -1rem;
}
@media (min-width: 1601px) {
  .capabilities-section__slider-wrap {
    justify-content: center;
  }
}

.capabilities-section__slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.capabilities-section__slider.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}
.capabilities-section__slider.is-dragging .capabilities-section__card {
  pointer-events: none;
}
.capabilities-section__slider::-webkit-scrollbar {
  display: none;
}

.capabilities-section__card {
  flex: 0 0 270px;
  width: 270px;
  min-width: 270px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #f9f8fc;
  border-radius: 0;
  padding: 1.5625rem 1.875rem 1.5rem;
  box-sizing: border-box;
  cursor: pointer;
  border-top: 1px solid #9334ff;
}
.capabilities-section__card--active {
  background: #9334ff;
}
.capabilities-section__card--active .capabilities-section__card-line {
  opacity: 0;
}
.capabilities-section__card--active .capabilities-section__card-icon-inactive {
  display: none;
}
.capabilities-section__card--active .capabilities-section__card-icon-active {
  display: block;
}
.capabilities-section__card--active .capabilities-section__card-title,
.capabilities-section__card--active .capabilities-section__card-desc {
  color: #fff;
  opacity: 1;
}

.capabilities-section__card-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a31bb6 0%, #59bbd5 26.5%, #c9c5c7 51%, #e86167 74%, #f54510 100%);
  background-blend-mode: color;
  background-color: #9334ff;
  mix-blend-mode: color;
  pointer-events: none;
}

.capabilities-section__card-icon {
  width: 40px;
  height: 45px;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.capabilities-section__card-icon-inactive {
  display: block;
  width: 40px;
  height: 45px;
  object-fit: contain;
}

.capabilities-section__card-icon-active {
  display: none;
  width: 40px;
  height: 45px;
  object-fit: contain;
}

.capabilities-section__card--active .capabilities-section__card-icon-inactive {
  display: none;
}

.capabilities-section__card--active .capabilities-section__card-icon-active {
  display: block;
}

.capabilities-section__card-title {
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  line-height: 1.04;
  font-weight: 600;
  color: #171717;
  margin: 0 0 auto;
  padding-bottom: 0.5rem;
}

.capabilities-section__card-desc {
  font-family: "Geist", sans-serif;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
  color: #171717;
  opacity: 0.6;
  text-align: right;
  margin: 0;
  margin-top: auto;
  letter-spacing: 0;
}

.capabilities-section__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.capabilities-section__dot-btn {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 7px;
  background: #747474;
  opacity: 0.24;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
}
.capabilities-section__dot-btn:hover {
  opacity: 0.5;
}
.capabilities-section__dot-btn--active {
  width: 8px;
  height: 8px;
  background: #262427;
  opacity: 1;
}

.key-protection-section {
  padding: 5rem 20px 6rem;
  background: #fff;
}

.key-protection-section__container {
  padding-left: 0;
  padding-right: 0;
}

.key-protection-section__inner {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  max-width: 100%;
}

.key-protection-section__content {
  flex: 0 0 auto;
  width: 50%;
  max-width: 465px;
}

.key-protection-section__label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 1.5rem;
}

.key-protection-section__dot {
  width: 5px;
  height: 5px;
  background: #262427;
  border-radius: 7px;
  flex-shrink: 0;
}

.key-protection-section__num {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: -0.52px;
  text-transform: uppercase;
  color: #262427;
}

.key-protection-section__title {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: -0.52px;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.6);
}

.key-protection-section__headline {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 90px);
  line-height: 0.96;
  color: #262427;
  margin: 0 0 1.5rem;
  max-width: 350px;
}

.key-protection-section__body {
  font-family: "Geist", sans-serif;
  font-size: 18px;
  line-height: 1.39;
  color: rgba(23, 23, 23, 0.6);
  margin: 0;
  max-width: 465px;
}

.key-protection-section__right {
  width: 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.key-protection-section__feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.key-protection-section__icon {
  display: block;
  width: 86px;
  height: 86px;
  flex-shrink: 0;
}

.key-protection-section__feature-title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.04;
  color: #171717;
  margin: 0;
  white-space: pre-wrap;
}

.key-protection-section__tabs {
  display: flex;
  gap: 25px;
  margin-bottom: 1.5rem;
  align-items: stretch;
  margin-left: 100px;
}

.key-protection-section__tab {
  padding: 20px 30px 20px 0;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: #171717;
  background: url("../images/tabs-after.svg") no-repeat right;
  background-size: contain;
}

.key-protection-section__accordion {
  width: 100%;
}

.key-protection-section__accordion-item {
  display: flex;
  align-items: stretch;
  position: relative;
}
.key-protection-section__accordion-item .key-protection-section__accordion-content {
  padding: 25px;
  position: relative;
}
.key-protection-section__accordion-item .key-protection-section__accordion-content::before {
  content: "";
  position: absolute;
  height: 2px;
  background: #ededed;
  width: 60px;
  left: -60px;
  top: -2px;
}
.key-protection-section__accordion-item .key-protection-section__accordion-content:first-child::before {
  top: 0;
}
.key-protection-section__accordion-item--open .key-protection-section__accordion-dot {
  background: #262427;
  border-color: transparent;
}
.key-protection-section__accordion-item--open .key-protection-section__accordion-content {
  background: #e8daf9;
}
.key-protection-section__accordion-item--open .key-protection-section__accordion-chevron::before {
  background-image: url("../images/accordion-arrow-active.svg");
}
.key-protection-section__accordion-item--open .key-protection-section__accordion-body {
  display: block;
  margin-top: 16px;
}

.key-protection-section__accordion .key-protection-section__accordion-item:first-child .key-protection-section__accordion-content::before {
  top: 0;
}

.key-protection-section__accordion-outside {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 60px;
  flex-shrink: 0;
  align-self: center;
}

.key-protection-section__accordion-content {
  flex: 1;
  min-width: 0;
  background: #f9f8fc;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-left: none;
  border-top: 0.667px solid rgba(0, 0, 0, 0.07);
}
.key-protection-section__accordion-item:first-child .key-protection-section__accordion-content {
  border-top: none;
  border-radius: 0 16px 0 0;
}
.key-protection-section__accordion-item:last-child .key-protection-section__accordion-content {
  border-radius: 0 0 16px 0;
}

.key-protection-section__accordion-head {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  padding: 0;
}

/* Dot to the left of the number: solid dark when active, outline only when inactive */
.key-protection-section__accordion-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid #747474;
  transition: background 0.2s, border-color 0.2s;
  position: absolute;
  top: -3px;
  left: 30px;
  z-index: 2;
}

.key-protection-section__accordion-item--open .key-protection-section__accordion-dot {
  background: #262427;
  border-color: transparent;
}

.key-protection-section__accordion-num {
  flex-shrink: 0;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50px;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: -0.22px;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.6);
}

.key-protection-section__accordion-title {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: #262427;
  flex: 1;
}

.key-protection-section__accordion-item:not(.key-protection-section__accordion-item--open) .key-protection-section__accordion-title {
  color: #707070;
}

.key-protection-section__accordion-chevron {
  flex-shrink: 0;
  width: 17px;
  height: 10px;
  position: relative;
}
.key-protection-section__accordion-chevron::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/accordion-arrow-inactive.svg") no-repeat center;
  background-size: contain;
}

.key-protection-section__accordion-body {
  display: none;
}

.key-protection-section__accordion-body p {
  font-family: "Geist", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #707070;
  margin: 0;
  letter-spacing: 0;
}

@media (max-width: 1024px) {
  .key-protection-section__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .key-protection-section__content {
    max-width: none;
  }
  .key-protection-section__headline {
    max-width: none;
  }
  .key-protection-section__body {
    max-width: none;
  }
  .key-protection-section__accordion {
    max-width: none;
  }
}
@media (max-width: 900px) {
  .key-protection-section {
    padding: 2.5rem 0 3rem;
  }
  .key-protection-section__container {
    padding-left: 0;
    padding-right: 0;
  }
  .key-protection-section__content {
    gap: 1.5rem;
  }
  .key-protection-section__headline {
    font-size: 56px;
    line-height: 80%;
    font-weight: 600;
  }
  .key-protection-section__body {
    font-size: 16px;
    line-height: 150%;
  }
  .key-protection-section__right {
    width: 100%;
    min-width: 0;
  }
  .key-protection-section__feature {
    gap: 1rem;
  }
  .key-protection-section__feature-title {
    font-size: 0.875rem;
  }
  .key-protection-section__tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .key-protection-section__tab {
    padding: 12px 16px;
    font-size: 13px;
  }
  .key-protection-section__accordion {
    width: 100%;
    overflow: hidden;
  }
  .key-protection-section__accordion-content {
    padding: 1.25rem 1rem;
  }
  .key-protection-section__accordion-title {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .key-protection-section__content {
    width: 100%;
  }
  .key-protection-section__tabs {
    flex-wrap: nowrap;
    margin-left: 0;
  }
  .key-protection-section__tab {
    padding: 18px 16px;
  }
  .key-protection-section__accordion-dot {
    display: none;
  }
  .key-protection-section__accordion-outside {
    padding-left: 0;
    width: 50px;
    justify-content: center;
  }
}
@media (max-width: 440px) {
  .key-protection-section__tab {
    background-size: 120%;
  }
}
.ecosystem-section {
  position: relative;
  padding: 5rem 20px 6rem;
  background: #fff;
  overflow: hidden;
  margin-bottom: -20px;
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.ecosystem-section__bg {
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 50%;
  max-width: 600px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 900px) {
  .ecosystem-section__bg {
    top: -290px;
    left: 0;
    width: 90%;
  }
}

.ecosystem-section__container {
  position: relative;
  z-index: 1;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.ecosystem-section__inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.ecosystem-section__left {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex-shrink: 0;
  width: 100%;
  max-width: 250px;
}

.ecosystem-section__label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 50px;
}

.ecosystem-section__dot {
  width: 5px;
  height: 5px;
  background: #262427;
  border-radius: 7px;
  flex-shrink: 0;
}

.ecosystem-section__num {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: -0.52px;
  text-transform: uppercase;
  color: #262427;
}

.ecosystem-section__title {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: -0.52px;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.6);
}

.ecosystem-section__headline {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 0.98;
  color: #262427;
  margin: 0;
}

.ecosystem-section__cards {
  display: flex;
  gap: 1.25rem;
  flex: 1;
  min-width: 0;
}

.ecosystem-section__card {
  position: relative;
  flex: 1;
  min-width: 200px;
  padding: 20px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

.ecosystem-section__card-num {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.ecosystem-section__card--1 .ecosystem-section__card-num {
  color: #e3e3e3;
}

.ecosystem-section__card--2 .ecosystem-section__card-num {
  color: #c9b7dd;
}

.ecosystem-section__card--3 .ecosystem-section__card-num {
  color: #923bf6;
}

.ecosystem-section__card-title {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.22px;
  text-transform: uppercase;
  color: #262427;
  margin: 0 0 0.5rem;
}

.ecosystem-section__card-desc {
  font-family: "Geist", sans-serif;
  font-size: 12px;
  line-height: 1.28;
  color: rgba(23, 23, 23, 0.4);
  max-width: 190px;
  margin: 0 0 20px;
}

.ecosystem-section__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.32px;
  color: #9334ff;
  text-decoration: none;
}
.ecosystem-section__card-cta:hover {
  text-decoration: underline;
}

.ecosystem-section__card-cta-icon {
  display: block;
  flex-shrink: 0;
  padding-top: 4px;
}

.ecosystem-section__card-launch {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: #262427;
  margin: 0 0 0.25rem;
}

.ecosystem-section__card-badge {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.25;
  color: rgba(23, 23, 23, 0.5);
  margin: 0;
}

@media (max-width: 1100px) {
  .ecosystem-section__inner {
    flex-direction: column;
    gap: 2rem;
  }
  .ecosystem-section__left {
    max-width: none;
  }
  .ecosystem-section__cards {
    align-items: stretch;
    gap: 10px;
  }
  .ecosystem-section__card {
    max-width: none;
  }
}
.ecosystem-section__dots {
  display: none;
}

@media (max-width: 900px) {
  .ecosystem-section {
    padding: 2.5rem 0 3rem;
  }
  .ecosystem-section__container {
    padding-left: 0;
    padding-right: 0;
  }
  .ecosystem-section__inner {
    gap: 1.5rem;
  }
  .ecosystem-section__headline {
    font-size: 32px;
    line-height: 110%;
  }
  .ecosystem-section__cards-wrap {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0 20px;
  }
  .ecosystem-section__cards {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.75rem;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
    padding-right: 20px;
  }
  .ecosystem-section__card {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    width: auto;
  }
  .ecosystem-section__dots {
    display: none;
  }
}
@media (max-width: 600px) {
  .ecosystem-section__cards-wrap {
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px;
  }
  .ecosystem-section__cards {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }
  .ecosystem-section__cards::-webkit-scrollbar {
    display: none;
  }
  /* ~2.5 cards visible (e.g. 570px wide) */
  .ecosystem-section__card {
    --ecosystem-slide-gap: 1rem;
    --ecosystem-pad: 20px;
    flex: 0 0 calc((100vw - var(--ecosystem-pad) - 2 * var(--ecosystem-slide-gap)) / 2.5);
    min-width: calc((100vw - var(--ecosystem-pad) - 2 * var(--ecosystem-slide-gap)) / 2.5);
    max-width: none;
    scroll-snap-align: start;
  }
  .ecosystem-section__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
    padding: 0 20px;
  }
  .ecosystem-section__dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
  }
  .ecosystem-section__dot-btn--active {
    background: #262427;
  }
}
@media (max-width: 440px) {
  .ecosystem-section__cards {
    gap: 0.75rem;
  }
  /* ~1.5 cards visible */
  .ecosystem-section__card {
    --ecosystem-slide-gap: 0.75rem;
    --ecosystem-pad: 2.5rem;
    flex: 0 0 calc((100vw - var(--ecosystem-pad) - var(--ecosystem-slide-gap)) / 1.5);
    min-width: calc((100vw - var(--ecosystem-pad) - var(--ecosystem-slide-gap)) / 1.5);
  }
}
.security-section {
  padding: 5rem 20px 7rem;
  background: #fff;
}

.security-section__container {
  display: flex;
  flex-direction: column;
}

.security-section__label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.security-section__dot {
  width: 5px;
  height: 5px;
  background: #262427;
  border-radius: 7px;
  flex-shrink: 0;
}

.security-section__num,
.security-section__title {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: -0.52px;
  text-transform: uppercase;
}

.security-section__num {
  color: #262427;
}

.security-section__title {
  color: rgba(23, 23, 23, 0.6);
}

.security-section__headline {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  color: #171717;
  letter-spacing: 0;
  margin: -24px auto 50px;
}

.security-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.security-section__dots {
  display: none;
}

.security-section__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 280px;
  padding: 32px 24px 20px;
  background: #fff;
  border: 2px solid #F9F8FC;
  border-radius: 30px;
  justify-content: space-between;
}

.security-section__logo {
  height: 65px;
  display: flex;
  align-items: center;
}
.security-section__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.security-section__logo-text {
  color: #262427;
  font-family: Geist;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.security-section__card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.security-section__card-title {
  color: #262427;
  font-family: Geist;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 80%;
  letter-spacing: -0.22px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.security-section__card-region {
  color: rgba(23, 23, 23, 0.4);
  font-family: Geist;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin: 0;
}

.security-section__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: #F9F8FC;
  color: #262427;
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-transform: lowercase;
  margin-top: 14px;
}

.security-section__badge--done {
  background: #262427;
  color: #fff;
}

@media (max-width: 1200px) {
  .security-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .security-section {
    padding: 2.5rem 0 3rem;
  }
  .security-section__headline {
    font-size: 32px;
    line-height: 0.9;
    text-align: left;
    margin: 20px 0 20px;
  }
  .security-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .security-section__card-title {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  .security-section__grid {
    grid-template-columns: 1fr;
  }
  .security-section__card {
    min-height: 200px;
  }
}
@media (max-width: 600px) {
  .security-section__cards-wrap {
    width: 100%;
    min-width: 0;
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px;
  }
  .security-section__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }
  .security-section__grid::-webkit-scrollbar {
    display: none;
  }
  .security-section__card {
    flex: 0 0 230px;
    min-width: 230px;
    max-width: none;
    scroll-snap-align: start;
  }
  .security-section__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
    padding: 0 20px;
  }
  .security-section__dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
  }
  .security-section__dot-btn--active {
    background: #262427;
  }
}
.site-footer {
  position: relative;
  margin-top: auto;
  min-height: 777px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f9f8fc;
  overflow: hidden;
}

.site-footer__container {
  position: relative;
  z-index: 1;
  padding-top: 220px;
  padding-bottom: 2.5rem;
}

.site-footer__row {
  display: flex;
}

.site-footer__row--top {
  align-items: stretch;
  margin-bottom: 140px;
  gap: 20px;
}

.site-footer__row--bottom {
  justify-content: space-between;
  gap: 20px;
  padding-top: 0.75rem;
}

.site-footer__left {
  width: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-footer__right {
  flex: 1;
}

.site-footer__contact-label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-footer__contact-dot {
  width: 5px;
  height: 5px;
  background: #f9f8fc;
  border-radius: 7px;
  flex-shrink: 0;
}

.site-footer__contact-num {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #f9f8fc;
}

.site-footer__contact-title {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #7a7a7a;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__social-link {
  display: block;
  width: 32px;
  height: 32px;
  transition: opacity 0.2s;
}
.site-footer__social-link:hover {
  opacity: 0.8;
}
.site-footer__social-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__headline {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 5vw, 3.625rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 2.25rem;
  max-width: 920px;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.95;
  text-align: left;
}
@media (max-width: 768px) {
  .site-footer__headline {
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
  }
}

.site-footer__headline-line {
  display: block;
}
.site-footer__headline-line + .site-footer__headline-line {
  margin-top: 0.06em;
}
.site-footer__headline-line--accent {
  color: #9334ff;
}

.site-footer__headline-accent {
  color: #9334ff;
}

.site-footer__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.site-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 0;
  border-radius: 12px;
  transition: opacity 0.2s;
  min-width: 152px;
  max-width: 152px;
  letter-spacing: 0;
}
.site-footer__btn:hover {
  opacity: 0.9;
}
.site-footer__btn--primary {
  background: #9334ff;
  color: #f9f8fc;
}
.site-footer__btn--outline {
  color: #f9f8fc;
  border: 1px solid #f9f8fc;
  background: transparent;
}

.site-footer__logo {
  display: block;
  line-height: 0;
}
.site-footer__logo img {
  display: block;
  height: 25px;
  width: auto;
}

.site-footer__bottom-logo {
  width: 270px;
}

.site-footer__bottom-contact {
  display: flex;
  gap: 50px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  color: #f9f8fc;
}

.site-footer__bottom-menus {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-footer__menus {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.site-footer__menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}
.site-footer__menu li {
  line-height: 0;
}
.site-footer__menu a {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  color: #7a7a7a;
  text-decoration: none;
  letter-spacing: 0;
}
.site-footer__menu a:hover {
  color: #f9f8fc;
}

.site-footer__bottom-copy {
  display: flex;
  justify-content: flex-end;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  color: #f9f8fc;
}

.site-footer__phone,
.site-footer__email,
.site-footer__copyright {
  white-space: nowrap;
}

.site-footer__bottom-contact a {
  color: inherit;
  text-decoration: none;
}
.site-footer__bottom-contact a:hover {
  text-decoration: underline;
}

.site-footer__copyright {
  margin: 0;
  text-align: right;
}

@media (max-width: 1200px) {
  .site-footer__menus {
    gap: 2rem;
  }
}
@media (max-width: 900px) {
  .site-footer {
    min-height: 0;
    background-color: #1a1a1a;
  }
  .site-footer__container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer__row--top {
    flex-direction: column;
    min-height: 0;
    margin-bottom: 0;
    width: 100%;
    align-items: center;
    gap: 0;
  }
  .site-footer__left {
    width: 100%;
    padding: 0;
    flex-direction: column;
    align-items: center;
    display: contents;
  }
  .site-footer__contact-label {
    order: 1;
    margin-bottom: 2rem;
  }
  .site-footer__contact-title {
    color: #a0a0a0;
  }
  .site-footer__contact-dot {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .site-footer__contact-num {
    color: #a0a0a0;
  }
  .site-footer__right {
    order: 2;
    width: 100%;
  }
  .site-footer__cta {
    padding-top: 0;
    margin-bottom: 2rem;
    width: 100%;
  }
  .site-footer__headline {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.125rem, 4.2vw, 1.5rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .site-footer__headline-line--accent {
    color: #9334ff;
  }
  .site-footer__headline-accent {
    color: #9334ff;
    display: inline;
  }
  .site-footer__buttons {
    order: 2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
  }
  .site-footer__btn {
    width: 100%;
    max-width: 280px;
    min-width: 0;
    padding: 1rem 1.5rem;
    font-size: 18px;
    border-radius: 10px;
  }
  .site-footer__btn--primary {
    background: #9334ff;
    color: #fff;
  }
  .site-footer__btn--outline {
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
  }
  .site-footer__social {
    order: 3;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
  }
  .site-footer__row--bottom {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-footer__bottom-menus {
    display: none;
  }
  .site-footer__bottom-contact {
    order: 1;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 14px;
  }
  .site-footer__bottom-contact .site-footer__phone::after {
    content: " • ";
    color: rgba(255, 255, 255, 0.5);
    font-weight: normal;
  }
  .site-footer__bottom-logo {
    order: 2;
    width: auto;
  }
  .site-footer__bottom-copy {
    order: 3;
    justify-content: center;
  }
  .site-footer__copyright {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
  }
}
@media (max-width: 900px) {
  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .site-header__inner {
    padding: 0 20px;
    height: 60px;
  }
}
@media (max-width: 1169px) {
  .hero {
    min-height: 600px;
  }
}
@media (max-width: 1024px) {
  .hero {
    min-height: 530px;
    margin-top: -60px;
  }
}
@media (max-width: 930px) {
  .hero {
    min-height: 450px;
    margin-top: -60px;
  }
  .hero .hero__container .hero__content .hero__title {
    font-size: 60px;
    margin-bottom: 16px;
  }
}
@media (max-width: 840px) {
  .hero {
    min-height: 550px;
    margin-top: -60px;
    background-size: cover;
  }
  .hero .hero__container .hero__content .hero__actions {
    flex-direction: row;
  }
  .hero .hero__container .hero__content .hero__title {
    font-size: 50px;
    margin-bottom: 16px;
    text-align: center;
  }
  .hero .hero__container .hero__content .hero__subtitle {
    text-align: center;
  }
  .hero .hero__container .hero__content .hero__features {
    justify-content: center;
  }
}
@media (max-width: 599px) {
  .hero {
    margin-top: -15px !important;
    background-size: contain;
    min-height: 1000px;
  }
}
@media (max-width: 440px) {
  .hero {
    margin-top: -15px !important;
    background-size: contain;
    min-height: 750px;
  }
  .hero .hero__container .hero__content .hero__actions {
    flex-direction: row;
  }
  .hero .hero__container .hero__content .hero__title {
    font-size: 56px;
    margin-bottom: 20px;
    text-align: left;
  }
  .hero .hero__container .hero__content .hero__subtitle {
    text-align: left;
    font-size: 20px;
    max-width: 255px;
  }
}
@media (max-width: 900px) {
  section {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.lenis .hero__container {
    transform: translate3d(0, var(--hero-parallax-y, 0), 0);
    will-change: transform;
  }
}
.tv-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.09em;
}

.tv-line__inner {
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  html.reveal-active .tv-split .tv-line__inner {
    transform: translateY(110%);
  }
  html.reveal-active .tv-split.scroll-reveal--visible .tv-line__inner {
    transform: translateY(0);
    transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--sr-i, 0) * 60ms + var(--tv-li, 0) * 95ms);
  }
  html.reveal-active .tv-split.scroll-reveal:not(.scroll-reveal--visible) {
    opacity: 1;
    transform: none;
  }
  html.reveal-active .tv-split.scroll-reveal--visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.reveal-active .scroll-reveal:not(.tv-split):not(.scroll-reveal--visible) {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  html.reveal-active .scroll-reveal:not(.tv-split).scroll-reveal--visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--sr-i, 0) * 60ms);
  }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .who-section__card {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .who-section__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }
  .solutions-section__card {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .solutions-section__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(80, 60, 120, 0.1);
  }
  .ecosystem-section__card {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .ecosystem-section__card:hover {
    transform: translateY(-5px);
  }
  .security-section__card {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .security-section__card:hover {
    transform: translateY(-4px);
  }
}
