/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Shifting Reality I";
  src: url("fonts/ShiftingRealityI.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Shifting Reality II";
  src: url("fonts/ShiftingRealityII.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Shifting Reality III";
  src: url("fonts/ShiftingRealityIII.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Faktum";
  src: url("fonts/faktum-regular.woff2") format("woff2"), url("fonts/faktum-regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Faktum";
  src: url("fonts/faktum-medium.woff2") format("woff2"), url("fonts/faktum-medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Faktum";
  src: url("fonts/faktum-semibold.woff2") format("woff2"), url("fonts/faktum-semibold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Faktum";
  src: url("fonts/faktum-bold.woff2") format("woff2"), url("fonts/faktum-bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Faktum";
  src: url("fonts/faktum-regular-italic.woff2") format("woff2"), url("fonts/faktum-regular-italic.woff") format("woff");
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Faktum";
  src: url("fonts/faktum-bold-italic.woff2") format("woff2"), url("fonts/faktum-bold-italic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
.full-height {
  height: 100%;
}

.bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

body {
  background: #000;
  color: #FFF;
  font-family: "Faktum", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

::-webkit-scrollbar:horizontal {
  -webkit-appearance: none;
  width: 7px;
}

::-webkit-scrollbar-thumb:horizontal {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 936px) {
  .desktop {
    display: none;
  }
}

@media screen and (min-width: 937px) {
  .mobile {
    display: none;
  }
}

.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 375px) {
  .hero .logo {
    max-height: 100px;
  }
}

.glitch-container span {
  display: inline-block;
}
.glitch-container span.hidden {
  visibility: hidden;
}
.glitch-container span.two {
  font-family: "Shifting Reality II";
}
.glitch-container span.three {
  font-family: "Shifting Reality III";
}
.glitch-container span.space {
  width: 0.35em;
  display: inline-block;
}

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.video-container.fade-out {
  opacity: 0;
}

/* Side vignette effect using pseudo-elements */
.video-container::before,
.video-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  pointer-events: none;
  z-index: 9999;
}
@media screen and (max-width: 1440px) {
  .video-container::before,
  .video-container::after {
    width: 150px;
  }
}
@media screen and (max-width: 936px) {
  .video-container::before,
  .video-container::after {
    display: none;
  }
}

.video-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
}

.video-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  /* Full viewport coverage strategy */
  width: 100vw;
  height: 100vh;
  /* Ensure proper aspect ratio coverage */
  min-width: 100vw;
  min-height: 56.25vw;
  /* 16:9 aspect ratio (9/16 = 0.5625) */
  /* Alternative size calculation for taller viewports */
}
@media (max-aspect-ratio: 16/9) {
  .video-background iframe {
    width: 177.78vh;
    /* 16/9 = 1.7778 */
    height: 100vh;
  }
}

.container {
  position: relative;
  z-index: 1;
  width: 1152px;
  max-width: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  gap: 56px;
  display: flex;
  flex-direction: column;
}

h1 {
  font-family: "Shifting Reality I", sans-serif;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
  text-transform: lowercase;
  max-width: 1000px;
}
@media screen and (max-width: 936px) {
  h1 {
    font-size: 48px;
    line-height: 48px;
    text-transform: lowercase;
    max-width: 684px;
  }
}
@media screen and (max-width: 640px) {
  h1 {
    font-size: 36px;
    line-height: 36px;
    text-transform: lowercase;
    max-width: 90%;
  }
}
h1 .glitch-text {
  display: block;
  margin-top: 0.75em;
}

.glitch-word {
  white-space: nowrap;
}

.green {
  color: #00E9BD;
}

.opening-text {
  height: 100vh;
  padding: 0 60px;
  display: flex;
  align-items: center;
  z-index: 9;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .opening-text {
    padding: 0 20px;
  }
}
.opening-text h2 {
  font-size: 48px;
  margin-bottom: 36px;
  font-weight: 600;
}
@media screen and (max-width: 936px) {
  .opening-text h2 {
    font-size: 36px;
    margin-bottom: 12px;
  }
}
.opening-text .text {
  width: 730px;
  max-width: 100%;
}
.opening-text .mobile p {
  margin-bottom: 1rem;
  font-size: 21px;
}

.text-two {
  justify-content: flex-end;
}
@media screen and (max-width: 430px) {
  .text-two {
    justify-content: initial;
    text-align: initial;
  }
}

button {
  display: flex;
  height: 46px;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  color: #fff;
  border: none;
  text-transform: uppercase;
  border-radius: 2px;
  background: var(--Primary-TT---Purple-01, #7314C9);
  font-family: Faktum;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
}

section.numbers {
  position: relative;
  z-index: 9;
  background-color: #000;
  padding-bottom: 100vh;
  overflow: hidden;
}
section.numbers .number-item {
  height: 100vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(0);
  /* Start at 0 scale */
  will-change: transform, opacity, filter;
  transform-origin: center center;
  transition: opacity 0.05s linear;
  /* Quick opacity transitions for smoother fades */
  filter: blur(0px);
  /* Initial blur state, will be controlled by JS */
  /* Create a container that keeps text centered while scaling */
}
section.numbers .number-item > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section.numbers h3 {
  font-size: 180px;
  background: linear-gradient(127deg, #00E9BD -26.19%, #A162DB 119.38%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Shifting Reality I";
  margin-bottom: 12px;
  line-height: 1em;
}
@media screen and (max-width: 936px) {
  section.numbers h3 {
    font-size: 86px;
  }
}
section.numbers h4 {
  background: linear-gradient(113deg, #00E9BD 3.92%, #A162DB 100%);
  font-size: 48px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Shifting Reality I";
  margin-bottom: 24px;
}
@media screen and (max-width: 936px) {
  section.numbers h4 {
    font-size: 24px;
  }
}
section.numbers p {
  font-size: 28px;
  background: linear-gradient(90deg, #00E9BD 0%, #A162DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 936px) {
  section.numbers p {
    font-size: 21px;
  }
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
:root {
  --gradient-speed: 30s;
  /* Default animation speed */
}

.cards {
  background: linear-gradient(270deg, var(--color-brand-teal-teal-500, #00E9BD) 0%, var(--color-brand-purple-purple-500, #7314C9) 100%);
  background-size: 400% 100%;
  animation: gradientAnimation var(--gradient-speed) ease infinite;
  will-change: background-position;
  /* Optimize for animation performance */
  min-height: 100vh;
  z-index: 100;
  padding: 72px;
  position: relative;
  z-index: 9999;
  perspective: 1000px;
  height: auto;
  /* Card stacking behavior */
  /* Card animation states */
}
@media screen and (max-width: 936px) {
  .cards {
    padding: 27.861px var(--spacing-spacing-06, 24px);
  }
}
@media screen and (max-width: 640px) {
  .cards .card:not(.one)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
}
@media screen and (max-width: 640px) {
  .cards .card.four::before {
    z-index: 9;
  }
}
.cards .card {
  position: sticky;
  top: calc(50% - 368px);
  will-change: transform, filter;
  border-radius: var(--corners-corner-large, 8px);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  margin-bottom: 128px;
  background-color: #000;
  height: 737px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
  display: flex;
}
@media screen and (max-width: 936px) {
  .cards .card {
    height: 500px;
    margin-bottom: 40vh !important;
    top: calc(50vh - 250px);
  }
}
@media screen and (max-width: 640px) {
  .cards .card {
    height: 80vh;
    margin-bottom: 30vh !important;
    top: 10vh;
  }
}
@media screen and (max-height: 700px) {
  .cards .card {
    background: #000 !important;
    background-image: none !important;
  }
}
.cards .card.pinned {
  z-index: 10;
}
.cards .card h3 {
  font-size: 58px;
  font-weight: 600;
  margin-bottom: 30px !important;
}
@media screen and (max-width: 936px) {
  .cards .card h3 {
    font-size: 32px;
    margin-bottom: 16px !important;
  }
}
.cards .card p {
  font-size: 23px;
}
@media screen and (max-width: 936px) {
  .cards .card p {
    font-size: 21px;
  }
}
.cards .card .gradient-text {
  background: linear-gradient(95deg, #FFF 19.47%, #00E9BD 52.39%, #A162DB 100.68%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 640px) {
  .cards .card .gradient-text {
    position: relative;
    z-index: 9;
  }
}
@media screen and (max-width: 640px) {
  .cards .card .text, .cards .card .left, .cards .card .right, .cards .card .images {
    position: relative;
    z-index: 9;
  }
}
.cards .card .caption {
  color: var(--Primary-TT-Purple-02, #B3A1E9);
  font-family: Faktum;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.34px;
  text-transform: uppercase;
}
@media screen and (max-width: 640px) {
  .cards .card .caption {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 32px;
    position: relative;
    z-index: 9;
  }
}
.cards .card-frame {
  height: 100%;
}
.cards .card-content {
  display: flex;
  width: 100%;
  padding: var(--spacing-spacing-08, 40px) var(--spacing-spacing-11, 64px) var(--spacing-spacing-10, 56px) var(--spacing-spacing-11, 64px);
  border-radius: var(--corners-corner-large, 8px);
}
@media screen and (max-width: 640px) {
  .cards .card-content {
    padding: var(--spacing-spacing-07, 32px) var(--spacing-spacing-05, 16px) var(--spacing-spacing-05, 16px) var(--spacing-spacing-05, 16px);
    flex-direction: column;
  }
}
.cards .cards-container {
  max-width: 1238px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 10px;
}
.cards .card:nth-child(1) {
  z-index: 11;
}
.cards .card:nth-child(2) {
  z-index: 12;
}
.cards .card:nth-child(3) {
  z-index: 13;
}
.cards .card:nth-child(4) {
  z-index: 14;
}
.cards .card:nth-child(5) {
  z-index: 15;
}
.cards .card:nth-child(6) {
  z-index: 16;
}
.cards .card:nth-child(7) {
  z-index: 17;
}
.cards .card {
  transform: translateY(0);
}
.cards .card.active-card {
  transform: translateY(0);
  opacity: 1;
}
.cards .card.behind {
  transform: scale(0.98);
}
.cards .caption {
  color: var(--Primary-TT-Purple-02, #B3A1E9);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.34px;
  text-transform: uppercase;
}
@media screen and (max-width: 640px) {
  .cards .caption {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
.cards .card.one .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 240px;
}
@media screen and (max-width: 936px) {
  .cards .card.one .text {
    gap: 120px;
  }
}
@media screen and (max-width: 640px) {
  .cards .card.one .text {
    gap: 12px;
    justify-content: flex-start;
  }
}
.cards .card.one .text p {
  max-width: 575px;
}
@media screen and (max-width: 640px) {
  .cards .card.one .card-content {
    flex-direction: column;
  }
}
.cards .card.one .images {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .cards .card.one .images {
    flex-direction: row;
  }
}
@media screen and (max-height: 690px) {
  .cards .card.one .images {
    display: none !important;
  }
}
@media screen and (max-width: 936px) {
  .cards .card.one .images img {
    width: 100px;
  }
}
.cards .card.one .images .ranking {
  color: rgba(242, 242, 242, 0.4);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Shifting Reality I";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 15.087px;
}
.cards .card.one .images .tagline {
  color: rgba(179, 179, 179, 0.4);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Faktum;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.cards .credit {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-spacing-03, 8px);
  margin-top: 240px;
}
@media screen and (max-width: 640px) {
  .cards .credit {
    margin-top: 0;
  }
}
.cards .credit .name {
  color: var(--Greyscale-TT-White, #FFF);
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.cards .credit .art {
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 12px;
  text-transform: uppercase;
  color: var(--Greyscale-TT-Grey-04, #808080);
}
.cards .card.two {
  background-image: url("./../img/the-opportunity-hz.png?v=2");
}
@media screen and (max-width: 640px) {
  .cards .card.two {
    background-image: url("./../img/the-opportunity-vt.png?v=2");
  }
  .cards .card.two h3 {
    margin-top: -16px;
  }
}
@media screen and (max-width: 640px) {
  .cards .card.two .text {
    height: 100%;
  }
}
@media screen and (max-width: 640px) {
  .cards .card.two .body-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.cards .card.three {
  background-image: url("./../img/elite-access-hz.png");
}
@media screen and (max-width: 640px) {
  .cards .card.three {
    background-image: url("./../img/elite-access-vt.png?v=2");
  }
}
@media screen and (max-height: 700px) {
  .cards .credit {
    display: none !important;
  }
}
.cards .card.two .text,
.cards .card.three .text,
.cards .card.four .text,
.cards .card.five .text,
.cards .card.six .text,
.cards .card.seven .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 0;
  max-width: 662px;
}
@media screen and (max-width: 936px) {
  .cards .card.two .text,
  .cards .card.three .text,
  .cards .card.four .text,
  .cards .card.five .text,
  .cards .card.six .text,
  .cards .card.seven .text {
    max-width: 337px;
  }
}
@media screen and (max-width: 640px) {
  .cards .card.two .text,
  .cards .card.three .text,
  .cards .card.four .text,
  .cards .card.five .text,
  .cards .card.six .text,
  .cards .card.seven .text {
    padding: 0;
  }
}
@media screen and (max-height: 700px) {
  .cards #mentor-card {
    background: #000 !important;
  }
}
@media screen and (max-height: 700px) {
  .cards .mentor-overlay {
    background: #000 !important;
  }
}
.cards .card.four {
  background-image: url("./../img/mentors-01-hz.png");
  background-color: rgb(0, 0, 0);
}
@media screen and (max-width: 640px) {
  .cards .card.four {
    background-image: url("./../img/mentors-01-vt.png");
  }
}
.cards .card.two .right,
.cards .card.four .right,
.cards .card.five .right,
.cards .card.six .right {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 32px;
}
.cards .card.five {
  background-image: url("./../img/portfolio-first-hz.png");
}
@media screen and (max-width: 640px) {
  .cards .card.five {
    background-image: url("./../img/portfolio-first-vt.png");
  }
}
.cards .card.six {
  background-image: url("./../img/globald-doors-hz.png");
}
@media screen and (max-width: 640px) {
  .cards .card.six {
    background-image: url("./../img/global-doors-vt.png");
  }
}
.cards .card.six h3 span {
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .cards .card.six h3 span {
    white-space: initial;
  }
}
.cards .card.six .text p {
  max-width: 600px;
}
.cards .card.seven {
  background-image: url("./../img/world-class-training-hz.png");
  margin-bottom: 256px;
}
@media screen and (max-width: 640px) {
  .cards .card.seven {
    background-image: url("./../img/world-class-training-vt.png");
  }
}
.cards .card.seven .caption {
  white-space: nowrap;
}
@media screen and (max-width: 936px) {
  .cards .card.seven .caption {
    white-space: initial;
  }
}

.cards-spacer {
  height: 100vh;
}

section.get-started {
  position: relative;
  z-index: 999999;
  background: #000;
}
section.get-started .inner {
  max-width: 1248px;
  margin: 0 auto;
  padding: 60px 95px;
}
@media screen and (max-width: 936px) {
  section.get-started .inner {
    padding: 32px;
  }
}
section.get-started .caption {
  color: var(--Primary-TT-Purple-02, #B3A1E9);
  font-family: Faktum;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.34px;
  text-transform: uppercase;
}
section.get-started .content {
  gap: 92px;
  margin-top: 120px;
}
@media screen and (max-width: 936px) {
  section.get-started .content {
    margin-top: 24px;
    gap: 50px;
  }
}
@media screen and (max-width: 640px) {
  section.get-started .image {
    display: none;
  }
}
section.get-started h3 {
  color: #FFF;
  font-family: Faktum;
  font-size: 58px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 60px;
}
@media screen and (max-width: 936px) {
  section.get-started h3 {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 936px) {
  section.get-started img {
    width: 160px;
  }
}
section.get-started .gradient-text {
  background: linear-gradient(95deg, #FFF 19.47%, #00E9BD 52.39%, #A162DB 100.68%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.get-started p {
  color: #FFF;
  font-family: Faktum;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.5em;
  max-width: 602px;
}
@media screen and (max-width: 936px) {
  section.get-started p {
    font-size: 16px;
    max-width: auto;
  }
}

.signup {
  position: relative;
  z-index: 999999;
  background: #000;
  padding-top: 100px;
}
.signup .inner {
  max-width: 1248px;
  margin: 0 auto;
}
@media screen and (max-width: 936px) {
  .signup {
    padding: 0 32px;
  }
}
.signup h3 {
  margin-bottom: 100px;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 936px) {
  .signup h3 {
    margin: 24px 0;
    font-size: 32px;
    text-align: left;
  }
}
.signup h3 .gradient-text {
  background: linear-gradient(91deg, #A162DB 47.49%, #00E9BD 52.69%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.signup .signup-widget {
  display: flex;
  gap: 24px;
  /* Slide-in animation setup */
  /* Animation classes for each item */
  /* Staggered delay for each item */
}
@media screen and (max-width: 744px) {
  .signup .signup-widget {
    flex-direction: column;
  }
}
@media screen and (max-width: 1290px) {
  .signup .signup-widget {
    padding: 32px;
  }
}
@media screen and (max-width: 936px) {
  .signup .signup-widget {
    padding: 0;
  }
}
.signup .signup-widget .items .item {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media screen and (max-width: 936px) {
  .signup .signup-widget .items .item {
    transform: translateX(-30px);
    /* Less dramatic movement on smaller screens */
  }
}
@media screen and (max-width: 640px) {
  .signup .signup-widget .items .item {
    transform: translateX(-20px);
    /* Even less movement on phones */
  }
}
.signup .signup-widget .items .item.animate {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Add a slight bounce effect */
}
.signup .signup-widget .items .item:nth-child(1).animate {
  transition-delay: 0s;
}
.signup .signup-widget .items .item:nth-child(2).animate {
  transition-delay: 0.2s;
}
.signup .signup-widget .items .item:nth-child(3).animate {
  transition-delay: 0.4s;
}
.signup .signup-widget .items .item:nth-child(4).animate {
  transition-delay: 0.6s;
}
.signup .signup-widget .left, .signup .signup-widget .right {
  width: 50%;
}
@media screen and (max-width: 744px) {
  .signup .signup-widget .left, .signup .signup-widget .right {
    width: 100%;
  }
}
.signup .signup-widget .right {
  font-size: 14px;
  margin-bottom: 100px;
}
.signup .signup-widget .items .item:first-child {
  position: relative;
}
.signup .signup-widget .items .item:first-child::before {
  width: 427px;
  max-width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #353535;
}
.signup .signup-widget h4 {
  display: inline-block;
  background: linear-gradient(90deg, #A162DB 0%, #00E9BD 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media screen and (max-width: 640px) {
  .signup .signup-widget h4 {
    margin-bottom: 12px;
    font-size: 24px;
  }
}
.signup .signup-widget p {
  color: #FFF;
  font-family: Faktum;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 640px) {
  .signup .signup-widget p {
    font-size: 18px;
  }
}
.signup .signup-widget .item {
  border-bottom: 1px solid #353535;
  padding: 24px 0;
}
@media screen and (max-width: 640px) {
  .signup .signup-widget .item {
    padding: 16px 0;
  }
}
.signup .signup-widget .terms {
  text-align: center;
  color: var(--text-text-secondary, #A6A6A6);
  color: var(--text-text-secondary, #A6A6A6);
  font-family: Faktum;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.signup .signup-widget .terms a,
.signup .signup-widget .terms a:active,
.signup .signup-widget .terms a:visited {
  color: inherit;
}

.hs-form-html .hsfc-FieldLabel__RequiredIndicator {
  display: none;
}
.hs-form-html .hsfc-DropdownOptions__Search {
  display: none !important;
}
.hs-form-html input[name="0-1/iso_country_code"] ~ .hsfc-DropdownOptions > .hsfc-DropdownOptions__Search {
  display: initial !important;
}
.hs-form-html .hsfc-CheckboxField {
  color: #ececec;
  line-height: 1.3em;
  font-size: 1em;
}
.hs-form-html .hsfc-CheckboxField a, .hs-form-html .hsfc-CheckboxField a:active, .hs-form-html .hsfc-CheckboxField a:visited {
  color: inherit;
}
.hs-form-html .hsfc-Row {
  margin-bottom: 12px !important;
}
.hs-form-html input[name="0-1/sms_consent_compliant"] {
  width: 16px;
  height: 16px;
  position: relative;
  top: 1px;
}
.hs-form-html input {
  border-radius: 2px;
  border: 1px solid var(--color-neutral-grey-grey-300, #A6A6A6);
  background: rgba(0, 0, 0, 0.1) !important;
  display: flex;
  height: 48px;
  padding: 12px var(--spacing-spacing-04, 12px) 12px 12px;
  align-items: center;
  gap: var(--spacing-spacing-02, 6px);
  align-self: stretch;
  -webkit-appearance: none;
}
.hs-form-html .hsfc-PhoneInput__FlagAndCaret {
  background: rgba(0, 0, 0, 0.1) !important;
  border: 1px solid var(--color-neutral-grey-grey-300, #A6A6A6);
  outline: none;
}
.hs-form-html .hsfc-DropdownOptions,
.hs-form-html .hsfc-DropdownOptions__List__ListItem {
  background: #000 !important;
}
.hs-form-html .hsfc-PhoneInput__FlagAndCaret:focus-visible {
  outline: none !important;
}
.hs-form-html input::placeholder {
  opacity: 0.5;
  color: #ececec !important;
}
.hs-form-html .hsfc-NavigationRow__Buttons {
  justify-content: center !important;
}
.hs-form-html .hsfc-Step__Content {
  padding-right: 0 !important;
}
@media screen and (max-width: 744px) {
  .hs-form-html .hsfc-Step__Content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.hs-form-html button[type=submit] {
  display: flex;
  height: 46px;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  background: var(--Primary-TT---Purple-01, #7314C9) !important;
}
.hs-form-html .hsfc-PostSubmit {
  height: 400px;
}
.hs-form-html .hsfc-PostSubmit .hsfc-Step__Content {
  text-align: center;
}
.hs-form-html .hsfc-PostSubmit .hsfc-RichText {
  color: #fff;
}
.hs-form-html .hsfc-PostSubmit strong {
  font-weight: 700;
  margin-bottom: 24px !important;
  display: inline-block;
  font-size: 28px !important;
}
.hs-form-html .hsfc-PostSubmit p {
  font-size: 16px !important;
}

footer {
  max-width: 1248px;
  margin: 0 auto;
  position: relative;
  z-index: 999999;
}
footer .animated-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, #00E9BD, #A162DB, #00E9BD);
  background-size: 200% 100%;
  animation: gradientMove 3s linear infinite;
}
footer .content {
  display: flex;
  padding: 60px var(--spacing-spacing-09, 48px) var(--spacing-spacing-11, 64px) var(--spacing-spacing-09, 48px);
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
@media screen and (max-width: 936px) {
  footer .content {
    align-items: flex-start;
    flex-direction: column;
  }
}
footer .left {
  gap: 23px;
}
footer .left a {
  text-decoration: none;
}
footer .left p,
footer .left a {
  color: var(--Greyscale-TT-Grey-04, #B3B3B3);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer .brain {
  width: 42px;
  height: auto;
}
footer .logotype {
  width: 281px;
  height: auto;
  max-width: 100%;
}
footer .right {
  display: flex;
  gap: 29px;
  flex-wrap: wrap;
}
@media screen and (max-width: 936px) {
  footer .right {
    margin-top: 32px;
  }
}
footer .right .image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 640px) {
  footer .right .image {
    width: 45%;
  }
}
@media screen and (max-width: 430px) {
  footer .right .image {
    width: 44%;
  }
}
footer .right img {
  width: 149px;
  height: auto;
}
@media screen and (max-width: 936px) {
  footer .right img {
    width: 140px;
  }
}
footer .right .ranking {
  color: var(--Greyscale-TT-Grey-06, #F2F2F2);
  text-align: center;
  font-family: "Shifting Reality I";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-transform: lowercase;
}
footer .right .subtitle {
  color: var(--Greyscale-TT-Grey-04, #808080);
  text-align: center;
  font-family: "Shifting Reality I";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  text-transform: lowercase;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/*# sourceMappingURL=main.css.map */
