/* Fonts */
/* Neutrals */
/* Brand */
/* Gradients */
/* Reset CSS */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-block-start: 0;
  margin-block-end: 0;
}

html {
  line-height: 1.5;
  font-size: 16px;
}

body {
  background-color: #171717;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
  list-style: none;
}

*[animated] {
  opacity: 0;
}

/* Crossfade between full-page navigations (e.g. TranslatePress language switches,
   which reload the document). Silently ignored where View Transitions aren't supported. */
@view-transition {
  navigation: auto;
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(*),
::view-transition-new(*) {
    animation: none;
  }
}
html {
  line-height: 1.5;
  scroll-behavior: smooth;
  scroll-padding-top: 2.5rem;
  font-size: calc(16 / 1920 * 100vw) !important;
}
@media only screen and (max-width: 750px) {
  html {
    font-size: calc(12.8 / 750 * 100vw) !important;
  }
}
@media only screen and (max-width: 450px) {
  html {
    font-size: calc(16 / 450 * 100vw) !important;
  }
}

* {
  font-family: "Inter", sans-serif; /* This will apply to all elements */
}

.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.fade-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: black; /* Adjust if needed */
  z-index: 9999;
  pointer-events: none; /* Non-interactable */
  opacity: 1; /* Initially hidden */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  overflow: hidden;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  display: inline-block;
}

main {
  overflow-x: clip;
}

section {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 6.25rem;
  padding-top: 6.25rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 450px) {
  section {
    padding-left: 1.25rem;
  }
}
@media only screen and (max-width: 450px) {
  section {
    padding-right: 1.25rem;
  }
}
@media only screen and (max-width: 450px) {
  section {
    padding-bottom: 3.125rem;
  }
}
@media only screen and (max-width: 450px) {
  section {
    padding-top: 3.125rem;
  }
}
section.full-height {
  min-height: 100dvh;
}
section.full-width > .container {
  max-width: 100%;
}
section.no-padding {
  padding: 0;
}
section > .container {
  width: 100%;
  max-width: 90rem;
  z-index: 1;
}

.no-scroll {
  overflow: hidden;
}

.bold {
  font-weight: 700;
}

.absolute {
  position: absolute;
}
.absolute-top {
  top: 0;
  position: absolute;
}
.absolute-top-right {
  right: 0;
  top: 0;
  position: absolute;
}
.absolute-top-left {
  left: 0;
}

.upper {
  text-transform: uppercase;
}

.gradient-text {
  color: #333;
  background: linear-gradient(262deg, #5a8fd2 0%, #d32dc9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@supports not (background-clip: text) {
  .gradient-text {
    color: #333;
    background: none;
  }
}

body.dev-mode section {
  background-color: blue;
  border: 0.125rem solid red;
}
body.dev-mode section > .container {
  background-color: green;
}

/* Global Font Family */
* {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  font-optical-sizing: auto;
  font-style: normal;
}

/* Specific Font Classes */
.raleway-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100; /* Fixed incorrect font-weight definition */
  font-style: normal;
}

.giga-font, .heading-1 {
  font-family: "Inter", sans-serif;
}

.heading-1 {
  font-size: 9.375rem;
  font-weight: 100;
  letter-spacing: -0.03em;
  line-height: 0.96;
}
@media only screen and (max-width: 450px) {
  .heading-1 {
    font-size: 5.625rem;
  }
}

.heading-2 {
  font-size: 6.25rem;
  line-height: 1;
  font-weight: 100;
}
@media only screen and (max-width: 450px) {
  .heading-2 {
    font-size: 4.375rem;
  }
}

.heading-3 {
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 450px) {
  .heading-3 {
    font-size: 2rem;
  }
}

.heading-4 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
}
@media only screen and (max-width: 450px) {
  .heading-4 {
    font-size: 1.5rem;
  }
}

.heading-5, header .header-container > nav ul li a {
  font-size: 1.25rem;
  line-height: 1.375;
  letter-spacing: -0.026em;
}
@media only screen and (max-width: 450px) {
  .heading-5, header .header-container > nav ul li a {
    font-size: 1.25rem;
  }
}

p,
.heading-6,
header .lang-dropdown li button,
header .lang-dropdown li a,
header .lang-select span,
header .btn-login {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width: 450px) {
  p,
.heading-6,
header .lang-dropdown li button,
header .lang-dropdown li a,
header .lang-select span,
header .btn-login {
    font-size: 1.125rem;
  }
}

.article-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.125rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.06);
  background: #262729;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease-out, border-color 0.25s ease-out, box-shadow 0.25s ease-out;
}
.article-card:hover {
  transform: translateY(-0.375rem);
  border-color: rgba(211, 45, 201, 0.5);
  box-shadow: 0 1.25rem 2.625rem rgba(0, 0, 0, 0.45);
}
.article-card:hover .article-card-media img {
  transform: scale(1.06);
}
.article-card:focus-visible {
  outline: 0.125rem solid #d32dc9;
  outline-offset: 0.1875rem;
}

.article-card-media {
  overflow: hidden;
  aspect-ratio: 15/7;
}
.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease-out;
}

.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.125rem 1rem 1.25rem;
}

.article-card-date {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  font-size: 0.75rem;
}
@media only screen and (max-width: 450px) {
  .article-card-date {
    font-size: 0.75rem;
  }
}

.article-card-title {
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
  font-size: 1.75rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
@media only screen and (max-width: 450px) {
  .article-card-title {
    font-size: 1.75rem;
  }
}

.article-card-desc {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
@media only screen and (max-width: 450px) {
  .article-card-desc {
    font-size: 0.875rem;
  }
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: fit-content;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 0.75rem;
  color: #ffffff;
  font-weight: medium;
  line-height: 1;
  font-size: 1.125rem;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out, background 0.25s ease-out, color 0.25s ease-out;
}
@media only screen and (max-width: 450px) {
  .btn {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 450px) {
  .btn {
    padding-top: 0.9375rem;
  }
}
@media only screen and (max-width: 450px) {
  .btn {
    padding-bottom: 0.9375rem;
  }
}
@media only screen and (max-width: 450px) {
  .btn {
    padding-left: 1.875rem;
  }
}
@media only screen and (max-width: 450px) {
  .btn {
    padding-right: 1.875rem;
  }
}
.btn-gradient {
  position: relative;
  isolation: isolate;
  background: linear-gradient(262deg, #5a8fd2 0%, #d32dc9 100%);
}
.btn-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, #f667ec 0%, #faaef3 100%);
  opacity: 0;
  transition: opacity 0.25s ease-out;
}
.btn-gradient:hover::before {
  opacity: 1;
}
.btn-outlined {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  isolation: isolate;
}
.btn-outlined::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 0.125rem;
  border-radius: inherit;
  background: linear-gradient(262deg, #5a8fd2 0%, #d32dc9 100%);
  -webkit-mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
}
.btn-outlined::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, #f667ec 0%, #faaef3 100%);
  opacity: 0;
  transition: opacity 0.25s ease-out;
  pointer-events: none;
}
.btn-outlined:hover::before {
  opacity: 0;
}
.btn-outlined:hover::after {
  opacity: 1;
}
.btn-outlined:hover .btn-icon {
  filter: brightness(0) invert(1);
}
.btn .btn-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: filter 0.25s ease-out, transform 0.25s ease-out;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem;
  background: rgba(255, 255, 255, 0.05);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  border-radius: 62.4375rem;
}
@media (max-width: 750px) {
  .tab {
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    border: none;
  }
}

.tab-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 62.4375rem;
  background: transparent;
  color: #9a9aad;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.25s ease-out, color 0.25s ease-out;
}
.tab-option.is-active {
  background: #f4f4f8;
  color: #0a0a12;
  font-weight: 700;
}
@media (max-width: 750px) {
  .tab-option {
    border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  }
  .tab-option.is-active {
    border-color: transparent;
  }
}

.tab-badge {
  padding: 0.125rem 0.375rem;
  border-radius: 0.375rem;
  background: rgba(53, 227, 164, 0.18);
  color: #35e3a4;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.625rem;
}

section.section-roller {
  overflow: hidden;
  background-color: orange !important;
  margin-bottom: 6.25rem;
}
section.section-roller .container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
section.section-roller .container .wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
section.section-roller .container .wrapper .carousel-roller {
  width: 100%;
  height: 100%;
  padding: 1.25rem;
}
section.section-roller .container .wrapper .carousel-roller .image-wrapper {
  margin: 0 1.25rem;
  width: 6.25rem;
  height: 6.25rem;
}

section.section-carousel {
  overflow: hidden;
}
section.section-carousel .container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
section.section-carousel .container .wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
section.section-carousel .container .wrapper .carousel {
  width: 100%;
  height: 100%;
  cursor: grab;
}
section.section-carousel .container .wrapper .carousel .image-wrapper {
  margin: 0 3.125rem;
  width: 12.5rem;
  height: 12.5rem;
}

@property --lang-border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes lang-border-spin {
  to {
    --lang-border-angle: 360deg;
  }
}
header {
  width: 100%;
  position: sticky;
  z-index: 10;
  justify-content: center;
  align-items: center;
  display: flex;
  top: 0;
}
header.active .mobile-nav {
  opacity: 1;
}
header.active .mobile-nav > nav {
  pointer-events: all;
}
header .header-container {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
  background-color: #1e1e1e;
  border-bottom: 0.0625rem solid #171717;
  padding-left: 2.75rem;
  padding-right: 2.75rem;
  padding-top: 1.8125rem;
  padding-bottom: 1.8125rem;
}
@media only screen and (max-width: 450px) {
  header .header-container {
    padding-left: 1.25rem;
  }
}
@media only screen and (max-width: 450px) {
  header .header-container {
    padding-right: 1.25rem;
  }
}
@media only screen and (max-width: 450px) {
  header .header-container {
    padding-top: 1rem;
  }
}
@media only screen and (max-width: 450px) {
  header .header-container {
    padding-bottom: 1rem;
  }
}
@media (max-width: 750px) {
  header .header-container {
    background: rgba(10, 10, 18, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding-left: 1.125rem;
    padding-right: 1.125rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}
header .header-container > nav {
  margin-left: auto;
}
@media (max-width: 750px) {
  header .header-container > nav {
    display: none;
  }
}
header .header-container > nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4.375rem;
}
@media only screen and (max-width: 450px) {
  header .header-container > nav ul {
    gap: 2.5rem;
  }
}
header .header-container > nav ul li a {
  color: #d9dadc;
  font-weight: 400;
  padding: 0.625rem;
  margin: 0 -0.25rem;
  background-image: linear-gradient(90deg, #5a8fd2 0%, #d32dc9 50%, #d9dadc 50%, #d9dadc 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.4s ease-in-out;
}
header .header-container > nav ul li a:hover {
  background-position: 0 0;
}
@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
  header .header-container > nav ul li a {
    background-image: none;
    -webkit-text-fill-color: currentColor;
    transition: color 0.3s ease-in-out;
  }
  header .header-container > nav ul li a:hover {
    color: #ffffff;
  }
}
header .header-container > nav img {
  width: 1.25rem;
  height: 1.25rem;
}
header .header-logo {
  width: auto;
  color: #333;
  background: linear-gradient(262deg, #5a8fd2 0%, #d32dc9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@supports not (background-clip: text) {
  header .header-logo {
    color: #333;
    background: none;
  }
}
header .header-logo p {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 750px) {
  header .header-logo p {
    color: #333;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.875rem;
  }
  @supports not (background-clip: text) {
    header .header-logo p {
      color: #333;
      background: none;
    }
  }
}
header .header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: 6.75rem;
}
@media only screen and (max-width: 450px) {
  header .header-actions {
    margin-left: 3.75rem;
  }
}
@media (max-width: 750px) {
  header .header-actions {
    margin-left: auto;
    gap: 0.5rem;
  }
}
header .lang-select-wrapper {
  position: relative;
}
header .lang-select-wrapper.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
header .lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 6.5625rem;
  width: max-content;
  padding: 0.375rem;
  border-radius: 0.3125rem;
  background: #1e1e1e;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(-0.25rem);
  pointer-events: none;
  transition: all 0.25s ease-out;
  z-index: 10;
}
header .lang-dropdown li + li {
  margin-top: 0.125rem;
}
header .lang-dropdown li button,
header .lang-dropdown li a {
  display: block;
  width: 100%;
  padding: 0.5rem 0.625rem;
  border: none;
  border-radius: 0.1875rem;
  background: none;
  color: #d9dadc;
  font-weight: 400;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
header .lang-dropdown li button:hover,
header .lang-dropdown li a:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}
header .lang-dropdown li[aria-selected=true] button, header .lang-dropdown li[aria-selected=true] a {
  color: #ffffff;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.08);
}
@media (max-width: 750px) {
  header .lang-dropdown {
    display: none;
  }
}
header .lang-select {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 6.5625rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 0.3125rem;
  border: 0.0625rem solid transparent;
  background: linear-gradient(#1e1e1e, #1e1e1e) padding-box, conic-gradient(from var(--lang-border-angle), #5a8fd2, #d32dc9, #5a8fd2) border-box;
  cursor: pointer;
}
header .lang-select:hover {
  animation: lang-border-spin 3s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  header .lang-select:hover {
    animation: none;
  }
}
header .lang-select span {
  color: #ffffff;
  font-weight: 500;
}
header .lang-select .icon-globe {
  width: 1.25rem;
  height: 1.25rem;
}
header .lang-select .icon-chevron {
  width: 1.5rem;
  height: 1.5rem;
}
@media (max-width: 750px) {
  header .lang-select {
    width: 3.4375rem;
    height: 1.25rem;
    border-radius: 1.125rem;
    gap: 0.25rem;
  }
  header .lang-select .icon-globe {
    width: 0.6875rem;
    height: 0.6875rem;
  }
  header .lang-select .icon-chevron {
    display: none;
  }
  header .lang-select span {
    font-size: 0.6875rem;
    font-weight: 400;
    color: #808080;
  }
}
header .btn-login {
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.4375rem;
  height: 2.5rem;
  border-radius: 0.3125rem;
  background: linear-gradient(262deg, #5a8fd2 0%, #d32dc9 100%);
  color: #ffffff;
  font-weight: 500;
}
header .btn-login::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, #f667ec 0%, #faaef3 100%);
  opacity: 0;
  transition: opacity 0.25s ease-out;
}
header .btn-login:hover::before {
  opacity: 1;
}
@media (max-width: 750px) {
  header .btn-login {
    width: 3.75rem;
    height: 1.25rem;
    border-radius: 1.125rem;
    font-size: 0.6875rem;
  }
}
header .burger {
  display: none;
  position: relative;
  width: 1.875rem;
  height: 0.125rem;
  background-color: #000000;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-out;
  pointer-events: all;
}
@media (max-width: 750px) {
  header .burger {
    display: flex;
    background-color: #ffffff;
  }
}
header.active header .burger {
  opacity: 0;
  pointer-events: none;
}
header .burger:before, header .burger:after {
  transition: all 0.25s ease-out;
  width: inherit;
  height: inherit;
  content: "";
  display: flex;
  transform-origin: center center;
  position: absolute;
  transform: rotate(0deg);
  background-color: #000000;
}
header .burger:after {
  bottom: -0.5rem;
}
header .burger:before {
  top: -0.5rem;
}
@media (max-width: 750px) {
  header .burger:before, header .burger:after {
    background-color: #ffffff;
  }
}
header .mobile-nav {
  display: none;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.25s ease-out;
}
@media (max-width: 750px) {
  header .mobile-nav {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100dvh;
    z-index: 15;
  }
}
header .mobile-nav:before {
  content: "";
  width: 200%;
  height: 200%;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: rgba(10, 10, 18, 0.9);
}
header .mobile-nav > nav {
  pointer-events: none;
}
header .mobile-nav > nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 3.125rem;
  gap: 3.125rem;
  flex-direction: column;
}
header .mobile-nav > nav ul li {
  text-align: center;
}
header .mobile-nav > nav ul li a {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.75rem;
}
header .mobile-nav .mobile-nav-close {
  display: none;
  position: absolute;
  top: 1.125rem;
  right: 1.125rem;
  width: 2.125rem;
  height: 2.125rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  pointer-events: none;
}
@media (max-width: 750px) {
  header .mobile-nav .mobile-nav-close {
    display: flex;
  }
}
header .mobile-nav .mobile-nav-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 0.1875rem;
  background-color: #ffffff;
  border-radius: 0.125rem;
}
header .mobile-nav .mobile-nav-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
header .mobile-nav .mobile-nav-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
header.active .mobile-nav .mobile-nav-close {
  pointer-events: all;
}

footer.footer {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #090910;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 3.125rem;
  padding-bottom: 0;
}
@media only screen and (max-width: 450px) {
  footer.footer {
    padding-left: 1.25rem;
  }
}
@media only screen and (max-width: 450px) {
  footer.footer {
    padding-right: 1.25rem;
  }
}
footer.footer .footer-container {
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
}
footer.footer .footer-top {
  display: flex;
  align-items: flex-start;
  gap: 7.5rem;
}
@media (max-width: 750px) {
  footer.footer .footer-top {
    flex-direction: column;
    gap: 2.5rem;
  }
}
footer.footer .footer-brand {
  max-width: 18.75rem;
}
@media (max-width: 750px) {
  footer.footer .footer-brand {
    max-width: none;
  }
}
footer.footer .footer-title {
  color: #f4f4f8;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 750px) {
  footer.footer .footer-title {
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
}
footer.footer .footer-tagline {
  margin-top: 1rem;
  color: #a6a6b6;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
footer.footer .footer-nav {
  display: flex;
  gap: 2.5rem;
}
footer.footer .footer-col {
  width: 12.5rem;
}
@media (max-width: 750px) {
  footer.footer .footer-col {
    width: auto;
  }
}
footer.footer .footer-col ul {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
footer.footer .footer-col a {
  color: #f4f4f8;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.25s ease-out;
}
footer.footer .footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}
footer.footer .footer-heading {
  color: #71717f;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
footer.footer .footer-divider {
  height: 0.0625rem;
  margin: 3.75rem 0 0;
  border: none;
  background-color: rgba(166, 166, 182, 0.15);
}
@media (max-width: 750px) {
  footer.footer .footer-divider {
    margin-top: 2.5rem;
  }
}
footer.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 0;
}
footer.footer .footer-copyright {
  color: #a6a6b6;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}
footer.footer .footer-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 450px) {
  footer.footer .footer-social {
    display: none;
  }
}
footer.footer .footer-social a {
  display: inline-flex;
  transition: filter 0.25s ease-out;
}
footer.footer .footer-social a:hover {
  filter: brightness(0) invert(1);
}
footer.footer .footer-social img {
  width: auto;
  height: 1.25rem;
}

section.section-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  min-height: 100vh;
  background-color: #171717;
  padding-bottom: 0;
  padding-bottom: 6.25rem;
}
@media only screen and (max-width: 450px) {
  section.section-hero {
    padding-bottom: 3.125rem;
  }
}
section.section-hero .banner-bg {
  width: 100%;
  height: 100%;
}
section.section-hero .banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
section.section-hero .banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(27.28deg, rgba(23, 23, 23, 0.99) 28.98%, rgba(102, 102, 102, 0) 125.89%);
}
section.section-hero .container {
  width: 100%;
  height: 100%;
  padding: 11.875rem 0 5.625rem 10rem;
}
section.section-hero .wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
section.section-hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 37.5rem;
}
section.section-hero .hero-title {
  display: flex;
  flex-direction: column;
  overflow: visible;
  line-height: 0.95;
  font-weight: bold;
  font-size: 4rem;
}
@media only screen and (max-width: 450px) {
  section.section-hero .hero-title {
    font-size: 2.5rem;
  }
}
section.section-hero .hero-title .hero-title-accent {
  text-transform: uppercase;
  font-size: 5.625rem;
  background: linear-gradient(262deg, #5a8fd2 0%, #d32dc9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media only screen and (max-width: 450px) {
  section.section-hero .hero-title .hero-title-accent {
    font-size: 3.25rem;
  }
}
section.section-hero .hero-subtitle {
  max-width: 26.875rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  line-height: 1.5;
  font-size: 1.125rem;
}
@media only screen and (max-width: 450px) {
  section.section-hero .hero-subtitle {
    font-size: 1rem;
  }
}
section.section-hero .hero-media {
  display: none;
}
section.section-hero .hero-actions {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
  margin-top: 2.5rem;
}
section.section-hero .hero-actions .btn {
  flex: 1;
}
section.section-hero .hero-stats {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 3.125rem;
}
section.section-hero .hero-stats li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.375rem;
  padding: 0 2rem;
}
section.section-hero .hero-stats li:not(:last-child) {
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.25);
}
section.section-hero .hero-stats .hero-stats-value {
  font-weight: medium;
  line-height: 1;
  font-size: 2rem;
}
@media only screen and (max-width: 450px) {
  section.section-hero .hero-stats .hero-stats-value {
    font-size: 1.5rem;
  }
}
section.section-hero .hero-stats .hero-stats-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}
@media only screen and (max-width: 450px) {
  section.section-hero .hero-stats .hero-stats-label {
    font-size: 0.625rem;
  }
}
@media (max-width: 750px) {
  section.section-hero {
    min-height: auto;
  }
  section.section-hero .banner-bg {
    display: none;
  }
  section.section-hero .container {
    height: auto;
    padding: 5.625rem 1.25rem 3.125rem;
  }
  section.section-hero .wrapper {
    height: auto;
  }
  section.section-hero .hero-content {
    width: 100%;
    max-width: 100%;
  }
  section.section-hero .hero-subtitle {
    max-width: 100%;
  }
  section.section-hero .hero-media {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
  }
  section.section-hero .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  section.section-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  section.section-hero .hero-actions .btn {
    width: 100%;
  }
  section.section-hero .hero-stats {
    justify-content: space-between;
    margin-top: 2rem;
  }
  section.section-hero .hero-stats li {
    flex: 1;
    align-items: center;
    text-align: center;
    padding: 0 0.625rem;
  }
}

section.section-blog-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  min-height: 100vh;
  background-color: #171717;
  margin-bottom: 6.25rem;
}
@media only screen and (max-width: 450px) {
  section.section-blog-hero {
    margin-bottom: 3.125rem;
  }
}
section.section-blog-hero .banner-bg {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
section.section-blog-hero .banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
section.section-blog-hero .banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 23, 23, 0.95) 0%, rgba(23, 23, 23, 0.82) 28%, rgba(23, 23, 23, 0.4) 58%, rgba(23, 23, 23, 0) 88%), linear-gradient(0deg, #171717 0%, rgba(23, 23, 23, 0.85) 12%, rgba(23, 23, 23, 0.4) 28%, rgba(23, 23, 23, 0) 46%);
}
section.section-blog-hero .container {
  padding: 5rem 0 5rem 10rem;
}
section.section-blog-hero .blog-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 56.25rem;
}
section.section-blog-hero .blog-hero-title {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.08;
  font-size: 3.25rem;
}
@media only screen and (max-width: 450px) {
  section.section-blog-hero .blog-hero-title {
    font-size: 2rem;
  }
}
section.section-blog-hero .blog-hero-title .blog-hero-title-accent {
  background: linear-gradient(180deg, #f667ec 0%, #faaef3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
section.section-blog-hero .blog-hero-date {
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 1.125rem;
}
@media only screen and (max-width: 450px) {
  section.section-blog-hero .blog-hero-date {
    font-size: 1rem;
  }
}
section.section-blog-hero .blog-hero-subtitle {
  margin-top: 0.625rem;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.125rem;
}
@media only screen and (max-width: 450px) {
  section.section-blog-hero .blog-hero-subtitle {
    font-size: 1rem;
  }
}
section.section-blog-hero .blog-hero-media {
  display: none;
}
section.section-blog-hero .blog-hero-cta {
  margin-top: 2.25rem;
  box-shadow: 0 0.625rem 1.875rem rgba(211, 45, 201, 0.4);
  border: 1px solid transparent;
  background: linear-gradient(#171717, #171717) padding-box, linear-gradient(262deg, #5a8fd2 0%, #d32dc9 100%) border-box;
}
section.section-blog-hero .blog-hero-cta::before {
  display: none;
}
section.section-blog-hero .blog-hero-cta:hover {
  box-shadow: 0 1rem 3.5rem rgba(211, 45, 201, 0.75);
  background: linear-gradient(#171717, #171717) padding-box, linear-gradient(180deg, #f667ec 0%, #faaef3 100%) border-box;
}
section.section-blog-hero .blog-hero-cta:hover .btn-icon {
  transform: rotate(45deg);
}
@media (max-width: 750px) {
  section.section-blog-hero {
    min-height: auto;
  }
  section.section-blog-hero .banner-bg {
    display: none;
  }
  section.section-blog-hero .container {
    padding: 5.625rem 1.25rem 3.125rem;
  }
  section.section-blog-hero .blog-hero-content,
section.section-blog-hero .blog-hero-subtitle {
    width: 100%;
    max-width: 100%;
  }
  section.section-blog-hero .blog-hero-date {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 750px) and (max-width: 450px) {
  section.section-blog-hero .blog-hero-date {
    font-size: 0.875rem;
  }
}
@media (max-width: 750px) {
  section.section-blog-hero .blog-hero-subtitle {
    order: 2;
    margin-top: 1.5rem;
    color: #808080;
    font-size: 1.625rem;
  }
}
@media only screen and (max-width: 750px) and (max-width: 450px) {
  section.section-blog-hero .blog-hero-subtitle {
    font-size: 0.9375rem;
  }
}
@media (max-width: 750px) {
  section.section-blog-hero .blog-hero-media {
    order: 1;
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
  }
  section.section-blog-hero .blog-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media (max-width: 750px) {
  section.section-blog-hero .blog-hero-cta {
    order: 3;
    width: 100%;
    margin-top: 1.5rem;
  }
}

section.section-article-body {
  margin-bottom: 6.25rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media only screen and (max-width: 450px) {
  section.section-article-body {
    margin-bottom: 3.125rem;
  }
}
@media only screen and (max-width: 450px) {
  section.section-article-body {
    padding-left: 1.25rem;
  }
}
@media only screen and (max-width: 450px) {
  section.section-article-body {
    padding-right: 1.25rem;
  }
}
section.section-article-body .wrapper {
  display: flex;
  justify-content: center;
}
section.section-article-body .wysiwyg {
  width: 100%;
  color: #ffffff;
}
section.section-article-body .wysiwyg > *:first-child {
  margin-top: 0;
}
section.section-article-body .wysiwyg h1,
section.section-article-body .wysiwyg h2,
section.section-article-body .wysiwyg h3,
section.section-article-body .wysiwyg h4,
section.section-article-body .wysiwyg h5,
section.section-article-body .wysiwyg h6 {
  color: #333;
  background: linear-gradient(268.43deg, #5a8fd2 1.27%, #d32dc9 98.73%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow: visible;
  font-weight: 700;
  line-height: 1.3;
  margin: 3rem 0 1.25rem;
}
@supports not (background-clip: text) {
  section.section-article-body .wysiwyg h1,
section.section-article-body .wysiwyg h2,
section.section-article-body .wysiwyg h3,
section.section-article-body .wysiwyg h4,
section.section-article-body .wysiwyg h5,
section.section-article-body .wysiwyg h6 {
    color: #333;
    background: none;
  }
}
section.section-article-body .wysiwyg h1 {
  font-size: 2.75rem;
}
@media only screen and (max-width: 450px) {
  section.section-article-body .wysiwyg h1 {
    font-size: 2.125rem;
  }
}
section.section-article-body .wysiwyg h2 {
  font-size: 2rem;
}
@media only screen and (max-width: 450px) {
  section.section-article-body .wysiwyg h2 {
    font-size: 1.625rem;
  }
}
section.section-article-body .wysiwyg h3 {
  font-size: 1.625rem;
}
@media only screen and (max-width: 450px) {
  section.section-article-body .wysiwyg h3 {
    font-size: 1.375rem;
  }
}
section.section-article-body .wysiwyg h4 {
  font-size: 1.375rem;
}
@media only screen and (max-width: 450px) {
  section.section-article-body .wysiwyg h4 {
    font-size: 1.25rem;
  }
}
section.section-article-body .wysiwyg h5 {
  font-size: 1.25rem;
}
@media only screen and (max-width: 450px) {
  section.section-article-body .wysiwyg h5 {
    font-size: 1.125rem;
  }
}
section.section-article-body .wysiwyg h6 {
  font-size: 1.125rem;
}
@media only screen and (max-width: 450px) {
  section.section-article-body .wysiwyg h6 {
    font-size: 1rem;
  }
}
section.section-article-body .wysiwyg p,
section.section-article-body .wysiwyg li,
section.section-article-body .wysiwyg span {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.7;
}
@media only screen and (max-width: 450px) {
  section.section-article-body .wysiwyg p,
section.section-article-body .wysiwyg li,
section.section-article-body .wysiwyg span {
    font-size: 1.125rem;
  }
}
section.section-article-body .wysiwyg p {
  margin: 1rem 0;
}
section.section-article-body .wysiwyg strong,
section.section-article-body .wysiwyg b {
  font-weight: 700;
  color: #ffffff;
}
section.section-article-body .wysiwyg em,
section.section-article-body .wysiwyg i {
  font-style: italic;
}
section.section-article-body .wysiwyg a {
  color: #5a8fd2;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  transition: color 0.25s ease-out;
}
section.section-article-body .wysiwyg a:hover {
  color: #d32dc9;
}
section.section-article-body .wysiwyg ul,
section.section-article-body .wysiwyg ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
section.section-article-body .wysiwyg ul {
  list-style: disc;
}
section.section-article-body .wysiwyg ol {
  list-style: decimal;
}
section.section-article-body .wysiwyg li {
  margin: 0.5rem 0;
}
section.section-article-body .wysiwyg li::marker {
  color: #d32dc9;
}
section.section-article-body .wysiwyg img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}
section.section-article-body .wysiwyg figure,
section.section-article-body .wysiwyg .wp-block-image {
  margin: 2.5rem 0;
  text-align: center;
}
section.section-article-body .wysiwyg figure img,
section.section-article-body .wysiwyg .wp-block-image img {
  margin: 0 auto;
}
section.section-article-body .wysiwyg figcaption,
section.section-article-body .wysiwyg .wp-element-caption {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-size: 0.875rem;
}
@media only screen and (max-width: 450px) {
  section.section-article-body .wysiwyg figcaption,
section.section-article-body .wysiwyg .wp-element-caption {
    font-size: 0.875rem;
  }
}
section.section-article-body .wysiwyg .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
section.section-article-body .wysiwyg .alignleft {
  float: left;
  margin: 0.5rem 1.75rem 1.25rem 0;
}
section.section-article-body .wysiwyg .alignright {
  float: right;
  margin: 0.5rem 0 1.25rem 1.75rem;
}
section.section-article-body .wysiwyg blockquote {
  margin: 0 2rem;
  padding: 1.5rem 2.5rem;
  text-align: center;
  border: 5px solid transparent;
  border-radius: 1.125rem;
  background: linear-gradient(#171717, #171717) padding-box, linear-gradient(268.11deg, rgba(90, 143, 210, 0) 0%, #d32dc9 98.47%) border-box;
}
section.section-article-body .wysiwyg blockquote p {
  margin: 0;
  color: #ffffff;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  font-size: 1.5rem;
}
@media only screen and (max-width: 450px) {
  section.section-article-body .wysiwyg blockquote p {
    font-size: 1.25rem;
  }
}
section.section-article-body .wysiwyg blockquote cite {
  display: block;
  margin-top: 0.875rem;
  color: #808080;
  font-style: normal;
  font-size: 1rem;
}
@media only screen and (max-width: 450px) {
  section.section-article-body .wysiwyg blockquote cite {
    font-size: 0.9375rem;
  }
}
@media (max-width: 750px) {
  section.section-article-body .wysiwyg blockquote {
    padding: 1.5rem 1.5rem;
  }
}

section.section-articles {
  z-index: 1;
}
section.section-articles::before, section.section-articles::after {
  content: "";
  position: absolute;
  bottom: -16.25rem;
  width: 65rem;
  height: 35rem;
  border-radius: 50%;
  filter: blur(7.5rem);
  pointer-events: none;
  z-index: 0;
}
section.section-articles::before {
  left: -13.75rem;
  background: radial-gradient(circle, rgba(211, 45, 201, 0.2) 0%, rgba(211, 45, 201, 0) 70%);
}
section.section-articles::after {
  right: -13.75rem;
  background: radial-gradient(circle, rgba(90, 143, 210, 0.2) 0%, rgba(90, 143, 210, 0) 70%);
}
section.section-articles .wrapper {
  width: 100%;
}
section.section-articles .articles-heading {
  margin-bottom: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  color: #333;
  background: linear-gradient(90deg, #d32dc9 0%, #5a8fd2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 450px) {
  section.section-articles .articles-heading {
    font-size: 1.125rem;
  }
}
@supports not (background-clip: text) {
  section.section-articles .articles-heading {
    color: #333;
    background: none;
  }
}
section.section-articles .articles-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.25rem;
  padding: 1.5rem 0;
}
@media only screen and (max-width: 450px) {
  section.section-articles .articles-empty {
    font-size: 1.125rem;
  }
}
section.section-articles .articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 1.5rem;
  width: 100%;
}
@media (max-width: 750px) {
  section.section-articles .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 450px) {
  section.section-articles .articles-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 750px) {
  section.section-articles .articles-grid--carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-right: 2.5rem;
    scroll-padding-left: 0.0625rem;
    scrollbar-width: none;
  }
  section.section-articles .articles-grid--carousel::-webkit-scrollbar {
    display: none;
  }
  section.section-articles .articles-grid--carousel .article-card {
    flex: 0 0 auto;
    width: 20rem;
    scroll-snap-align: start;
  }
}
section.section-articles .articles-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
section.section-articles .articles-cta .btn {
  border: 2px solid transparent;
  background: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)) padding-box, linear-gradient(262deg, #5a8fd2 0%, #d32dc9 100%) padding-box, linear-gradient(268.43deg, #5a8fd2 1.27%, #d32dc9 98.73%) border-box;
}
section.section-articles .articles-cta .btn-icon {
  width: auto;
  height: 0.875rem;
}

section.section-features {
  background-color: #171717;
}
section.section-features .container .wrapper {
  width: 100%;
}
section.section-features .features-heading {
  width: 100%;
  text-align: right;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
section.section-features .features-heading .features-heading-accent {
  color: #d32dc9;
  text-transform: uppercase;
  font-size: 1.75rem;
}
@media (max-width: 750px) {
  section.section-features .features-heading {
    text-align: center;
  }
  section.section-features .features-heading p {
    color: #808080;
  }
  section.section-features .features-heading .features-heading-accent {
    color: #333;
    background: linear-gradient(262deg, #5a8fd2 0%, #d32dc9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  @supports not (background-clip: text) {
    section.section-features .features-heading .features-heading-accent {
      color: #333;
      background: none;
    }
  }
}
section.section-features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}
@media (max-width: 750px) {
  section.section-features .features-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.375rem;
    padding-left: 5rem;
    padding-right: 5rem;
    scroll-padding-left: 5rem;
    scrollbar-width: none;
  }
  section.section-features .features-grid::-webkit-scrollbar {
    display: none;
  }
}
section.section-features .feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  border-radius: 0.875rem;
  border: 0.0625rem solid #454749;
  padding: 2.25rem 1.5rem;
  aspect-ratio: 362/443;
}
@media (max-width: 750px) {
  section.section-features .feature-card {
    flex: 0 0 auto;
    width: 16.4375rem;
    aspect-ratio: 263/359;
    scroll-snap-align: start;
  }
}
section.section-features .feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: circle(0% at var(--x, 50%) var(--y, 50%));
  transition: clip-path 0.5s ease;
  pointer-events: none;
}
section.section-features .feature-card:hover::before {
  clip-path: circle(150% at var(--x, 50%) var(--y, 50%));
}
section.section-features .feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle 26.25rem at 100% 100%, rgba(211, 45, 201, 0.4) 0%, rgba(211, 45, 201, 0) 70%);
  pointer-events: none;
}
section.section-features .feature-card .feature-card-desc {
  transition: color 0.5s ease;
}
section.section-features .feature-card--dark {
  background-color: #171717;
}
section.section-features .feature-card--dark::before {
  background-color: #f2f0ef;
}
section.section-features .feature-card--dark .feature-card-desc {
  color: #ffffff;
}
section.section-features .feature-card--dark:hover .feature-card-desc {
  color: #171717;
}
section.section-features .feature-card--light {
  background-color: #f2f0ef;
}
section.section-features .feature-card--light::before {
  background-color: #171717;
}
section.section-features .feature-card--light::after {
  background: radial-gradient(circle 13.75rem at 0% 0%, rgba(211, 45, 201, 0.32) 0%, rgba(211, 45, 201, 0) 70%), radial-gradient(circle 26.25rem at 100% 100%, rgba(211, 45, 201, 0.4) 0%, rgba(211, 45, 201, 0) 70%);
}
section.section-features .feature-card--light .feature-card-desc {
  color: #171717;
}
section.section-features .feature-card--light:hover .feature-card-desc {
  color: #ffffff;
}
@media (prefers-reduced-motion: reduce) {
  section.section-features .feature-card::before,
section.section-features .feature-card .feature-card-desc {
    transition: none;
  }
}
section.section-features .feature-card-badge {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background-color: rgba(211, 45, 201, 0.25);
  color: #d32dc9;
  border-radius: 1.875rem;
  padding: 0.25rem 1rem;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
}
section.section-features .feature-card-soon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  color: #faaef3;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1.1875rem;
}
section.section-features .feature-card-title {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  color: #d32dc9;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 1rem;
}
@media (max-width: 750px) {
  section.section-features .feature-card-title {
    font-size: 1.25rem;
  }
}
section.section-features .feature-card-desc {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.5rem;
  max-width: 21.125rem;
}
@media (max-width: 750px) {
  section.section-features .feature-card-desc {
    font-size: 0.875rem;
  }
}
section.section-features .feature-card--soon .feature-card-title,
section.section-features .feature-card--soon .feature-card-desc {
  opacity: 0.6;
}
section.section-features .feature-card--soon .feature-card-title {
  margin-top: 0;
}
section.section-features .feature-card-media {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto 0;
}
section.section-features .feature-card-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 16.25rem;
  object-fit: contain;
}

section.section-workflow {
  background-color: #171717;
}
section.section-workflow .workflow-heading {
  width: 100%;
  text-align: right;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
section.section-workflow .workflow-heading .workflow-heading-accent {
  text-transform: uppercase;
  font-size: 1.75rem;
  color: #d32dc9;
}
@media (max-width: 750px) {
  section.section-workflow .workflow-heading {
    text-align: center;
  }
}
section.section-workflow .workflow-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
section.section-workflow .workflow-row {
  display: grid;
  gap: 1.875rem;
  width: 100%;
}
section.section-workflow .workflow-row--top {
  grid-template-columns: 3fr 5fr;
}
section.section-workflow .workflow-row--bottom {
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 750px) {
  section.section-workflow .workflow-row {
    grid-template-columns: 1fr;
  }
}
section.section-workflow .workflow-card {
  background-color: #060e19;
  border: 0.0625rem solid #808080;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 1rem;
  padding: 2.5rem;
  min-height: 32.875rem;
  color: #ffffff;
}
@media (max-width: 750px) {
  section.section-workflow .workflow-card {
    min-height: 15rem;
  }
}
section.section-workflow .workflow-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 38.75rem;
  height: 38.75rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 45, 201, 0.35) 0%, rgba(211, 45, 201, 0) 65%);
  filter: blur(3.75rem);
  pointer-events: none;
  bottom: -15rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 750px) {
  section.section-workflow .workflow-card::before {
    width: 32.5rem;
    height: 32.5rem;
    bottom: -11.25rem;
    background: radial-gradient(circle, rgba(211, 45, 201, 0.45) 0%, rgba(211, 45, 201, 0) 65%);
  }
}
section.section-workflow .workflow-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
section.section-workflow .workflow-card-label {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.5rem;
}
section.section-workflow .workflow-card-number {
  font-weight: 600;
  font-size: 4.375rem;
  line-height: 1;
}
section.section-workflow .workflow-card-title {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 0.875rem;
}
section.section-workflow .workflow-card-desc {
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 0.5rem;
  max-width: 16.25rem;
}
section.section-workflow .workflow-card-icon {
  position: absolute;
  z-index: 1;
  width: 22.5rem;
  height: 22.5rem;
  opacity: 0.6;
  pointer-events: none;
}
section.section-workflow .workflow-card-icon picture {
  display: block;
  width: 100%;
  height: 100%;
}
section.section-workflow .workflow-card-icon img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;
}
section.section-workflow .workflow-card--capture .workflow-card-icon {
  left: -2.5rem;
  bottom: -1.875rem;
}
section.section-workflow .workflow-card--process .workflow-card-icon {
  right: 0rem;
  bottom: 0rem;
}
section.section-workflow .workflow-card--relaying .workflow-card-icon {
  width: 25rem;
  height: 25rem;
  right: 2.5rem;
  bottom: 0rem;
}
section.section-workflow .workflow-card--preview .workflow-card-icon {
  right: 0rem;
  bottom: 0rem;
}
section.section-workflow .workflow-card--capture::before {
  left: -6.25rem;
  transform: none;
}
section.section-workflow .workflow-card--process::before {
  left: auto;
  right: -8.75rem;
  top: -15rem;
  bottom: auto;
  transform: none;
}
section.section-workflow .workflow-card--relaying::before {
  right: -16.25rem;
  bottom: -21.875rem;
  transform: none;
}
section.section-workflow .workflow-card--preview::before {
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
}
@media (max-width: 750px) {
  section.section-workflow .workflow-card {
    padding: 1.875rem;
  }
  section.section-workflow .workflow-card-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.2);
  }
  section.section-workflow .workflow-card-number {
    font-size: 3.25rem;
    color: rgba(255, 255, 255, 0.2);
  }
  section.section-workflow .workflow-card-title {
    font-size: 1.125rem;
  }
  section.section-workflow .workflow-card-desc {
    font-size: 0.75rem;
    max-width: 100%;
  }
  section.section-workflow .workflow-card-icon {
    z-index: 0;
    width: 11.25rem;
    height: 11.25rem;
    opacity: 0.4;
  }
  section.section-workflow .workflow-card-icon img {
    object-position: center;
  }
  section.section-workflow .workflow-card--capture .workflow-card-icon,
section.section-workflow .workflow-card--process .workflow-card-icon,
section.section-workflow .workflow-card--relaying .workflow-card-icon,
section.section-workflow .workflow-card--preview .workflow-card-icon {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
  }
  section.section-workflow .workflow-card--relaying .workflow-card-icon {
    width: 12.5rem;
    height: 12.5rem;
  }
  section.section-workflow .workflow-card--capture::before {
    top: -11.25rem;
    right: -11.25rem;
    bottom: auto;
    left: auto;
    transform: none;
  }
  section.section-workflow .workflow-card--process::before {
    top: 50%;
    left: -11.25rem;
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
  }
  section.section-workflow .workflow-card--relaying::before {
    left: 58%;
    bottom: -11.25rem;
    top: auto;
    right: auto;
    transform: translateX(-50%);
  }
  section.section-workflow .workflow-card--preview::before {
    top: -11.25rem;
    left: -11.25rem;
    right: auto;
    bottom: auto;
    transform: none;
  }
}

section.section-billing {
  background-color: #171717;
}
section.section-billing .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
section.section-billing .billing-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  max-width: 40rem;
  margin-bottom: 1.75rem;
}
section.section-billing .billing-heading .billing-eyebrow {
  font-weight: 500;
  font-size: 1.5rem;
  color: #ffffff;
}
@media (max-width: 750px) {
  section.section-billing .billing-heading .billing-eyebrow {
    font-size: 0.75rem;
    color: #808080;
  }
}
section.section-billing .billing-heading .billing-title {
  color: #333;
  background: linear-gradient(262deg, #5a8fd2 0%, #d32dc9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.2;
}
@supports not (background-clip: text) {
  section.section-billing .billing-heading .billing-title {
    color: #333;
    background: none;
  }
}
@media (max-width: 750px) {
  section.section-billing .billing-heading .billing-title {
    font-size: 1.25rem;
  }
}
section.section-billing .billing-heading .billing-subtitle {
  font-weight: 500;
  font-size: 1.125rem;
  color: #9a9aad;
}
section.section-billing .tab {
  margin-bottom: 4rem;
}
section.section-billing .billing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
}
@media (max-width: 750px) {
  section.section-billing .billing-grid {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-top: 1.5rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    scroll-padding-left: 2.5rem;
    scrollbar-width: none;
  }
  section.section-billing .billing-grid::-webkit-scrollbar {
    display: none;
  }
}
section.section-billing .billing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.875rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.08);
  border-radius: 1.125rem;
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}
@media (max-width: 750px) {
  section.section-billing .billing-card {
    flex: 0 0 auto;
    width: 20rem;
    scroll-snap-align: start;
  }
}
section.section-billing .billing-card-head {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
section.section-billing .billing-card-name {
  font-weight: 700;
  font-size: 1.4375rem;
  line-height: 1.2;
  color: #8b8b9e;
}
@media (max-width: 750px) {
  section.section-billing .billing-card-name {
    font-size: 0.875rem;
  }
}
section.section-billing .billing-card-name-note {
  display: block;
  font-size: 1.125rem;
}
@media (max-width: 750px) {
  section.section-billing .billing-card-name-note {
    font-size: 0.75rem;
  }
}
section.section-billing .billing-card-desc {
  font-size: 0.75rem;
  line-height: 1.2;
  color: #9a9aad;
  min-height: 1.8125rem;
}
section.section-billing .billing-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 0.9375rem;
}
section.section-billing .billing-card-amount {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #f4f4f8;
}
section.section-billing .billing-card-period {
  font-size: 1rem;
  color: #8b8b9e;
}
section.section-billing .billing-card-billed {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #71717f;
}
section.section-billing .billing-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1.125rem;
  padding: 0.875rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: #f0f0f6;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease-out, opacity 0.25s ease-out;
}
section.section-billing .billing-card-cta:hover {
  background: rgba(255, 255, 255, 0.12);
}
section.section-billing .billing-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
section.section-billing .billing-card-feature {
  position: relative;
  padding-left: 1.6875rem;
  font-size: 0.75rem;
  line-height: 1.3;
  color: #c6c6d2;
}
section.section-billing .billing-card-feature::before {
  content: "";
  position: absolute;
  left: 0.1875rem;
  top: 0.0625rem;
  width: 0.375rem;
  height: 0.625rem;
  border: solid #7c5cff;
  border-width: 0 0.125rem 0.125rem 0;
  transform: rotate(45deg);
}
section.section-billing .billing-card--featured {
  margin-top: -1.5rem;
  border-color: rgba(124, 92, 255, 0.5);
  background: linear-gradient(to bottom, rgba(124, 92, 255, 0.14), rgba(124, 92, 255, 0.03));
  box-shadow: 0 1.875rem 4.375rem -1.875rem rgba(124, 92, 255, 0.6);
}
section.section-billing .billing-card--featured .billing-card-name,
section.section-billing .billing-card--featured .billing-card-amount {
  color: #ffffff;
}
section.section-billing .billing-card--featured .billing-card-desc,
section.section-billing .billing-card--featured .billing-card-period {
  color: #b5b0c8;
}
section.section-billing .billing-card--featured .billing-card-billed {
  color: #9a90c0;
}
@media (max-width: 750px) {
  section.section-billing .billing-card--featured {
    margin-top: 0;
  }
}
section.section-billing .billing-card-badge {
  position: absolute;
  top: 0;
  left: 1.625rem;
  transform: translateY(-50%);
  padding: 0.375rem 0.75rem;
  border-radius: 62.4375rem;
  background: #7c5cff;
  color: #ffffff;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
section.section-billing .billing-card-cta--featured {
  border: none;
  background: linear-gradient(116.85deg, #7c5cff 0%, #5a34e0 100%);
  color: #ffffff;
  box-shadow: 0 0.75rem 1.5rem -0.5rem rgba(124, 92, 255, 0.7);
}
section.section-billing .billing-card-cta--featured:hover {
  background: linear-gradient(116.85deg, #7c5cff 0%, #5a34e0 100%);
  opacity: 0.92;
}

section.section-faq {
  background-color: #171717;
}
section.section-faq .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
section.section-faq .faq-title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
@media (max-width: 750px) {
  section.section-faq .faq-title {
    font-size: 1.5rem;
  }
}
section.section-faq .tab {
  margin-bottom: 2.5rem;
}
section.section-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
section.section-faq .faq-item {
  border: 0.0625rem solid rgba(255, 255, 255, 0.08);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.02);
}
section.section-faq .faq-item.is-open {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}
section.section-faq .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.375rem 1.75rem;
  border: none;
  background: transparent;
  color: #f0f0f6;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: left;
  cursor: pointer;
}
@media (max-width: 750px) {
  section.section-faq .faq-question {
    gap: 1rem;
    padding: 1.25rem;
    font-size: 0.875rem;
  }
}
section.section-faq .faq-icon {
  flex-shrink: 0;
  width: 0.5625rem;
  height: 0.5625rem;
  border-right: 0.125rem solid #9a9aad;
  border-bottom: 0.125rem solid #9a9aad;
  transform: rotate(45deg);
  transition: transform 0.25s ease-out;
}
section.section-faq .faq-item.is-open .faq-icon {
  transform: rotate(-135deg);
}
section.section-faq .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease-out;
}
section.section-faq .faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}
section.section-faq .faq-answer-inner {
  overflow: hidden;
}
section.section-faq .faq-answer p {
  padding: 0 1.75rem 1.5rem;
  color: #9a9aad;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media (max-width: 750px) {
  section.section-faq .faq-answer p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.8125rem;
  }
}

section.section-contact-intro {
  position: relative;
  background: #171717;
}
section.section-contact-intro::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -6.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 93.75rem;
  height: 62.5rem;
  background: url("../images/contact-section-bg.png") no-repeat center/cover;
  filter: blur(1.875rem);
  opacity: var(--glow-opacity, 0.9);
  pointer-events: none;
}
section.section-contact-intro .container {
  position: relative;
  z-index: 1;
}
section.section-contact-intro .contact-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.25rem;
  height: 37.5rem;
}
@media (max-width: 750px) {
  section.section-contact-intro .contact-intro {
    gap: 0.875rem;
    height: 12.5rem;
  }
}
section.section-contact-intro .contact-title {
  font-weight: 400;
  font-size: 4.375rem;
  line-height: 1.1;
}
section.section-contact-intro .contact-title .contact-title-accent {
  font-weight: 700;
}
@media (max-width: 750px) {
  section.section-contact-intro .contact-title {
    font-size: 1.875rem;
  }
}
section.section-contact-intro .contact-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (max-width: 750px) {
  section.section-contact-intro .contact-subtitle {
    font-size: 0.875rem;
  }
}

section.section-contact {
  position: relative;
}
section.section-contact::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62.5rem;
  height: 62.5rem;
  background: linear-gradient(268.43deg, #5a8fd2 1.27%, #d32dc9 98.73%);
  filter: blur(18.75rem);
  opacity: 0.55;
  pointer-events: none;
}
section.section-contact .container {
  position: relative;
  z-index: 1;
}
section.section-contact .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.25rem;
  width: 100%;
}
@media (max-width: 750px) {
  section.section-contact .wrapper {
    gap: 3.125rem;
  }
}
section.section-contact .contact-card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  width: 100%;
  border: 0.0625rem solid #808080;
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 750px) {
  section.section-contact .contact-card {
    grid-template-columns: 1fr;
    border-radius: 1.125rem;
  }
}
section.section-contact .contact-card-visual {
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  background: linear-gradient(160deg, #2a1633, #101018);
}
section.section-contact .contact-card-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
@media (max-width: 750px) {
  section.section-contact .contact-card-visual {
    min-height: auto;
    aspect-ratio: 16/11;
  }
}
section.section-contact .contact-card-form {
  background-color: #060e19;
  background-image: radial-gradient(circle at top left, rgba(211, 45, 201, 0.35), transparent 50%), radial-gradient(circle at bottom right, rgba(90, 143, 210, 0.32), transparent 50%);
  padding: 3.25rem 3.5rem;
}
@media (max-width: 750px) {
  section.section-contact .contact-card-form {
    padding: 1.75rem 1.5rem;
  }
}
section.section-contact .contact-form-title {
  max-width: 22.5rem;
  margin: 0 auto 2rem;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 750px) {
  section.section-contact .contact-form-title {
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
  }
}
section.section-contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 750px) {
  section.section-contact .contact-form {
    gap: 1rem;
  }
}
section.section-contact .contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
section.section-contact .contact-field label {
  font-weight: 500;
  font-size: 1rem;
  color: #ffffff;
}
section.section-contact .contact-field input,
section.section-contact .contact-field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background: #262729;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.25s ease-out, background 0.25s ease-out;
}
section.section-contact .contact-field input::placeholder,
section.section-contact .contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
section.section-contact .contact-field input:focus,
section.section-contact .contact-field textarea:focus {
  outline: none;
  border: 1px solid #d32dc9;
  background: #262729;
}
section.section-contact .contact-field input:-webkit-autofill, section.section-contact .contact-field input:-webkit-autofill:hover, section.section-contact .contact-field input:-webkit-autofill:focus, section.section-contact .contact-field input:-webkit-autofill:active,
section.section-contact .contact-field textarea:-webkit-autofill,
section.section-contact .contact-field textarea:-webkit-autofill:hover,
section.section-contact .contact-field textarea:-webkit-autofill:focus,
section.section-contact .contact-field textarea:-webkit-autofill:active {
  -webkit-text-fill-color: #ffffff;
  caret-color: #ffffff;
  -webkit-box-shadow: 0 0 0 62.5rem #262729 inset;
  box-shadow: 0 0 0 62.5rem #262729 inset;
  transition: background-color 5000s ease-in-out 0s;
}
section.section-contact .contact-field textarea {
  min-height: 5.625rem;
  resize: vertical;
}
section.section-contact .contact-consent .wpcf7-form-control-wrap,
section.section-contact .contact-consent .wpcf7-acceptance,
section.section-contact .contact-consent .wpcf7-list-item {
  display: inline;
}
section.section-contact .contact-consent label {
  cursor: pointer;
  user-select: none;
}
section.section-contact .contact-consent .contact-consent-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
section.section-contact .contact-consent .wpcf7-list-item-label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
section.section-contact .contact-consent .contact-consent-box {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.625rem;
  vertical-align: middle;
  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
  border-radius: 0.25rem;
  transition: border-color 0.25s ease-out, background 0.25s ease-out;
}
section.section-contact .contact-consent .contact-consent-box::after {
  content: "";
  width: 0.25rem;
  height: 0.5625rem;
  border: solid #ffffff;
  border-width: 0 0.125rem 0.125rem 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.25s ease-out;
}
section.section-contact .contact-consent .contact-consent-input:checked + .wpcf7-list-item-label .contact-consent-box {
  border-color: transparent;
  background: linear-gradient(262deg, #5a8fd2 0%, #d32dc9 100%);
}
section.section-contact .contact-consent .contact-consent-input:checked + .wpcf7-list-item-label .contact-consent-box::after {
  transform: rotate(45deg) scale(1);
}
section.section-contact .contact-consent .contact-consent-input:focus-visible + .wpcf7-list-item-label .contact-consent-box {
  outline: 0.125rem solid rgba(90, 143, 210, 0.8);
  outline-offset: 0.125rem;
}
section.section-contact .contact-consent a {
  color: inherit;
  text-decoration: none;
}
section.section-contact .contact-consent a:hover, section.section-contact .contact-consent a:focus-visible {
  text-decoration: underline;
}
section.section-contact .wpcf7-response-output {
  margin: 1.25rem 0 0;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.4;
}
section.section-contact .wpcf7-form.invalid .wpcf7-response-output,
section.section-contact .wpcf7-form.unaccepted .wpcf7-response-output,
section.section-contact .wpcf7-form.payment-required .wpcf7-response-output {
  border-color: rgba(255, 107, 107, 0.6);
  background: rgba(255, 107, 107, 0.12);
  color: #ffb3b3;
}
section.section-contact .wpcf7-form.sent .wpcf7-response-output {
  border-color: rgba(62, 207, 142, 0.5);
  background: rgba(62, 207, 142, 0.12);
  color: #9fe9c8;
}
section.section-contact .wpcf7-not-valid-tip {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: #ff6b6b;
}
section.section-contact .contact-field .wpcf7-not-valid {
  border: 0.0625rem solid #ff6b6b;
}
section.section-contact .contact-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.25rem;
}
section.section-contact .contact-submit {
  min-width: 8.125rem;
  box-shadow: 0 0.5rem 1.5rem -0.125rem rgba(211, 45, 201, 0.5), 0 0.125rem 1rem rgba(90, 143, 210, 0.3);
}

section.section-legal {
  position: relative;
  overflow: hidden;
  background: #171717;
}
section.section-legal::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -21.875rem;
  transform: translateX(-50%);
  width: 100rem;
  height: 75rem;
  background: linear-gradient(268.43deg, #5a8fd2 1.27%, #d32dc9 98.73%);
  filter: blur(21.875rem);
  opacity: 0.4;
  pointer-events: none;
}
section.section-legal .container {
  position: relative;
  z-index: 1;
}
section.section-legal .container .wrapper {
  width: 100%;
}
section.section-legal .legal-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-header {
    gap: 0.875rem;
  }
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-header {
    margin-bottom: 0.875rem;
  }
}
section.section-legal .legal-header .legal-title {
  overflow: visible;
  font-size: 3.4375rem;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  background: linear-gradient(262deg, #5a8fd2 0%, #d32dc9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@supports not (background-clip: text) {
  section.section-legal .legal-header .legal-title {
    color: #333;
    background: none;
  }
}
section.section-legal .legal-header .legal-meta {
  color: #808080;
  font-weight: 400;
  font-size: 1.5rem;
}
section.section-legal .legal-content {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #1e1e1e;
  padding: 3.125rem 2.5rem;
  border: 1px solid #454749;
  border-radius: 1.5rem;
}
section.section-legal .legal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 43.75rem 43.75rem, 43.75rem 43.75rem;
  background-position: -17.5rem 5rem, calc(100% + 18.75rem) calc(100% + 18.75rem);
  background-image: radial-gradient(70.71% 70.71% at 50% 50%, rgba(211, 45, 201, 0.34) 0%, rgba(211, 45, 201, 0) 62%), radial-gradient(70.71% 70.71% at 50% 50%, rgba(211, 45, 201, 0.34) 0%, rgba(211, 45, 201, 0) 62%);
}
section.section-legal .legal-content .legal-divider {
  border: 0;
  height: 0.0625rem;
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
  background: rgba(255, 255, 255, 0.12);
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content .legal-divider {
    margin-top: 1.25rem;
  }
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content .legal-divider {
    margin-bottom: 1.25rem;
  }
}
section.section-legal .legal-content p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content p {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content p {
    margin-bottom: 1rem;
  }
}
section.section-legal .legal-content p:last-child {
  margin-bottom: 0;
}
section.section-legal .legal-content h2 {
  overflow: visible;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content h2 {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content h2 {
    margin-top: 2.5rem;
  }
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content h2 {
    margin-bottom: 1rem;
  }
}
section.section-legal .legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content ul {
    margin-bottom: 1rem;
  }
}
section.section-legal .legal-content ul li {
  list-style: disc;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content ul li {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content ul li {
    margin-bottom: 0.625rem;
  }
}
section.section-legal .legal-content ul li::marker {
  color: #ffffff;
}
section.section-legal .legal-content .legal-cards {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.25rem;
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content .legal-cards {
    gap: 1rem;
  }
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content .legal-cards {
    margin-top: 1rem;
  }
}
@media (max-width: 750px) {
  section.section-legal .legal-content .legal-cards {
    flex-direction: column;
  }
}
section.section-legal .legal-content .legal-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #262729;
  border: 0.0625rem solid #808080;
  border-radius: 0.875rem;
  padding: 1.875rem;
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content .legal-card {
    padding: 1.25rem;
  }
}
section.section-legal .legal-content .legal-card .legal-card-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content .legal-card .legal-card-title {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content .legal-card .legal-card-title {
    margin-bottom: 0.5rem;
  }
}
section.section-legal .legal-content .legal-card .legal-card-text {
  color: #ffffff;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 0;
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content .legal-card .legal-card-text {
    font-size: 0.75rem;
  }
}
section.section-legal .legal-content .legal-figure {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 450px) {
  section.section-legal .legal-content .legal-figure {
    margin-top: 1.5rem;
  }
}
section.section-legal .legal-content .legal-figure img {
  display: block;
  width: 100%;
  height: auto;
}

section.section-404 {
  position: relative;
  overflow: hidden;
  background: #171717;
  color: #ffffff;
  min-height: 80vh;
}
section.section-404::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 75rem;
  height: 56.25rem;
  background: linear-gradient(268.43deg, #5a8fd2 1.27%, #d32dc9 98.73%);
  filter: blur(21.875rem);
  opacity: 0.35;
  pointer-events: none;
}
section.section-404 .container {
  position: relative;
  z-index: 1;
}
section.section-404 .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}
section.section-404 .error-404-code {
  font-weight: 700;
  line-height: 1;
  font-size: 12.5rem;
  background: linear-gradient(262deg, #5a8fd2 0%, #d32dc9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media only screen and (max-width: 450px) {
  section.section-404 .error-404-code {
    font-size: 7.5rem;
  }
}
section.section-404 .error-404-title {
  line-height: 1.15;
  padding-bottom: 0.25rem;
}
section.section-404 .error-404-message {
  max-width: 32.5rem;
  color: rgba(255, 255, 255, 0.7);
}
section.section-404 .error-404-actions {
  margin-top: 1rem;
}

section.section-two-column .container .wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 750px) {
  section.section-two-column .container .wrapper {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr;
  }
}
section.section-two-column .container .wrapper .block {
  width: 100%;
}
section.section-two-column .container .wrapper .block-left {
  padding: 3.125rem;
}
@media only screen and (max-width: 450px) {
  section.section-two-column .container .wrapper .block-left {
    padding: 3.125rem;
  }
}
section.section-two-column .container .wrapper .block-right {
  overflow: hidden;
}
section.section-two-column .container .wrapper.reverse .block-left {
  order: 2;
}
section.section-two-column .container .wrapper.reverse .block-right {
  order: 1;
}
