@font-face {
  font-family: Dinot;
  src: url('../fonts/DINOT.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Geist;
  src: url('../fonts/Geist-Regular.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Jetbrainsmono;
  src: url('../fonts/JetBrainsMono-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #09090b;
  --primary-white: #fff;
  --base-gray: #a1a1aa;
  --darker-gray: #71717a;
  --gray-dark: #18181b;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.page-wrapper {
  margin-top: 80px;
  overflow: hidden;
}

.sg-main-section {
  padding-top: 128px;
  padding-bottom: 128px;
  padding-right: 0;
}

.body {
  background-color: var(--background);
  background-image: url('../images/grid-tile.svg');
  background-position: -15px 80px;
  background-size: auto;
  font-family: Geist, Arial, sans-serif;
}

.container {
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

.container.white-background {
  background-color: var(--primary-white);
  background-image: url('../images/dot-pattern.svg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: contain;
}

.container.white-background.steps-container {
  background-image: url('../images/dot-pattern.svg');
  background-position: 0 0;
  background-size: 10px;
  max-width: 71rem;
  padding-top: 128px;
  padding-bottom: 128px;
}

.container.white-background.steps-container.vs-content {
  padding-top: 64px;
  padding-bottom: 64px;
}

.navbar {
  z-index: 999;
  background-color: var(--background);
  width: 100vw;
  margin-top: 0;
  padding-top: 24px;
  padding-bottom: 16px;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar.is-scrolled {
  background-color: #0000;
}

.nav-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.brand {
  justify-content: center;
  align-items: center;
  width: 132px;
  height: 100%;
  max-height: 100%;
  margin-left: 0;
  padding-top: 0;
  display: block;
  position: relative;
}

.button-primary {
  background-color: var(--primary-white);
  color: var(--background);
  text-align: center;
  border: 1px solid #000;
  border-radius: 4px;
  padding-left: 16px;
  padding-right: 16px;
  transition: all .35s;
}

.button-primary:hover {
  border: 1px solid var(--base-gray);
  background-color: var(--background);
  color: var(--primary-white);
}

.button-primary.form-submit {
  white-space: nowrap;
  border: 1px #fff3;
  border-radius: 0;
  justify-content: center;
  align-self: stretch;
  align-items: stretch;
  padding: 14px 24px;
  display: flex;
}

.button-group {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.button-group.hero {
  margin-top: 24px;
}

.button-outline {
  background-color: var(--background);
  text-align: center;
  border: 1px solid #3b3b3d;
  border-radius: 4px;
  transition: all .35s;
}

.button-outline:hover {
  background-color: var(--primary-white);
  color: var(--background);
}

.button-outline._w-full {
  width: 100%;
}

.button-outline.mobile {
  display: none;
}

.heading-h1 {
  color: var(--primary-white);
  text-transform: uppercase;
  word-break: normal;
  margin-top: 0;
  font-family: Dinot, Arial, sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 64px;
}

.heading-h2 {
  color: var(--primary-white);
  text-align: center;
  text-transform: uppercase;
  font-family: Dinot, Arial, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 64px;
}

.heading-h2.text-centered {
  margin-top: 0;
}

.heading-h2.on-white {
  text-align: center;
}

.heading-h2.on-white.step-heading {
  margin: 10px 20px 0;
}

.heading-h2.m-0._w-100 {
  width: 100%;
}

.heading-h3 {
  color: var(--primary-white);
  font-family: Dinot, Arial, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 64px;
}

.paragraph {
  color: var(--base-gray);
  font-family: Geist, Arial, sans-serif;
  font-size: 16px;
  line-height: 21px;
}

.paragraph.problem-point {
  width: auto;
  max-width: 285px;
  line-height: 21px;
}

.paragraph.step-kicker {
  color: var(--darker-gray);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
}

.paragraph.problem-point-scaling {
  width: auto;
  max-width: 350px;
  line-height: 21px;
}

.nav-inner {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.text-size-large {
  color: #fff;
  letter-spacing: .4px;
  width: auto;
  font-family: Geist, Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.text-size-large.text-gray {
  color: var(--base-gray);
}

.text-size-large.text-gray.text-centered.evaluation-subhead {
  max-width: 420px;
}

.text-size-large.text-centered.subhead.hero {
  margin-top: 0;
  margin-bottom: 16px;
}

.text-size-large.text-green {
  color: #10b981;
}

.text-size-large.text-black {
  color: var(--gray-dark);
}

.text-size-large.text-black.text-centered.mt-2 {
  margin-top: 16px;
}

.text-block {
  color: var(--primary-white);
  font-family: Geist, Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.nav-label-old {
  color: var(--primary-white);
  font-family: Geist, Arial, sans-serif;
  font-weight: 400;
}

.footer {
  padding-top: 64px;
  padding-bottom: 64px;
}

.footer-container {
  background-color: var(--gray-dark);
  padding: 32px;
  display: none;
}

.footer-logos {
  justify-content: space-between;
  align-items: center;
}

.footer-nav {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
}

.link {
  color: var(--primary-white);
  text-decoration: none;
}

.corner-bottom-left {
  width: 6px;
  height: 6px;
  transform-style: preserve-3d;
  position: relative;
  transform: rotateX(180deg)rotateY(0)rotateZ(0);
}

.corner-top {
  background-color: var(--primary-white);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.corner-top.black {
  background-color: var(--background);
}

.corner-bottom {
  background-color: var(--primary-white);
  width: 1px;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.corner-bottom.black {
  background-color: var(--background);
}

.corner-top-left {
  width: 6px;
  height: 6px;
  text-decoration: none;
  position: relative;
  inset: 0% auto auto 0%;
}

.left-corners {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
  transform: rotate(0);
}

.nav-links {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-nav-links {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  color: var(--darker-gray);
  justify-content: center;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.footer-nav-links.legal {
  font-size: 12px;
  line-height: 14px;
}

.right-corners {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  transform-style: preserve-3d;
  flex-flow: column;
  display: flex;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.footer-logos-bottom {
  justify-content: space-between;
  align-items: center;
}

.image {
  vertical-align: baseline;
  display: block;
}

.image-2 {
  display: none;
}

.nav-menu {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}

.home-hero-section {
  padding-top: 88px;
  padding-bottom: 0;
  padding-right: 0;
  position: static;
}

.hero-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 120px;
  display: flex;
}

.hero-content.text-centered.flex-centered {
  justify-content: center;
  align-items: center;
}

.market-hero-image {
  position: static;
}

.hero-image {
  z-index: -1;
  width: 1170px;
  display: block;
  position: absolute;
  inset: 0% 0% auto auto;
}

.hero-image.about-us {
  width: 1400px;
  inset: 6% 0% auto;
}

.problem-section {
  padding-top: 128px;
  padding-bottom: 128px;
}

.problem-row {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.problem-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.text-size-medium {
  color: var(--primary-white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Geist, Arial, sans-serif;
  font-size: 18px;
  line-height: 26px;
}

.text-size-medium.p-0 {
  margin-bottom: 0;
}

.text-size-medium.text-centered {
  line-height: 26px;
}

.text-size-medium.grey {
  color: var(--darker-gray);
}

.text-size-medium.grey.text-center {
  text-align: center;
}

.text-size-medium.text-black {
  color: var(--gray-dark);
}

.text-size-medium.text-center.mt-4 {
  text-align: center;
  margin-top: 24px;
}

.item-line {
  background-color: var(--primary-white);
  width: 48px;
  height: 1px;
}

.section-header {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: center;
  max-width: 100%;
  margin: 0 auto 64px;
  display: flex;
}

.section-header.left-align {
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
}

.section-header.left-align.model {
  margin-bottom: 20px;
}

.section-header.markets-evaluation-header {
  max-width: 810px;
  margin-top: 0;
  margin-bottom: 40px;
}

.section-header.faq-page {
  margin-bottom: 48px;
}

.section-header.mb-3 {
  margin-top: 0;
  margin-bottom: 24px;
}

.section-header.problem-header {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 128px;
  display: flex;
}

.section-header.compares {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 10px;
  display: flex;
}

.section-header.center-align._w-100 {
  width: 800px;
}

.heading {
  text-align: left;
}

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

.image-5 {
  display: none;
}

.nav-label {
  color: var(--base-gray);
  font-family: Geist, Arial, sans-serif;
  text-decoration: none;
}

.nav-label:hover, .nav-label:focus {
  color: var(--primary-white);
}

.nav-label.footer {
  padding: 0 10px;
}

.nav-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--base-gray);
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav-item.w--current {
  color: var(--primary-white);
}

.nav-corner {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
  transform: rotate(0);
}

.nav-corner.right {
  transform: none;
}

.corner-top-right {
  width: 6px;
  height: 6px;
  transform-style: preserve-3d;
  position: relative;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.corner-bottom-right {
  width: 6px;
  height: 6px;
  transform-style: preserve-3d;
  position: relative;
  transform: rotateX(180deg)rotateY(180deg)rotateZ(0);
}

.about-us-values-section {
  display: block;
}

.step-content {
  background-color: var(--primary-white);
  flex-flow: column;
  width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.on-white {
  color: var(--background);
}

.steps-content {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
}

.feature-step {
  background-color: var(--gray-dark);
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 342px;
  height: 100%;
  padding: 32px 24px;
  display: flex;
}

.step-icon {
  width: 100px;
}

.step-kicker {
  color: var(--base-gray);
  text-transform: uppercase;
  margin-top: 16px;
  font-size: 18px;
}

.button-container {
  justify-content: center;
  align-items: center;
  padding-top: 56px;
  display: flex;
}

.button-secondary {
  background-color: var(--background);
  border-radius: 8px;
}

.evaluation-section {
  padding-top: 128px;
  padding-bottom: 64px;
}

.evaluation-header {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  align-items: center;
  max-width: 790px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.evaluation-target-content {
  margin-top: 96px;
  padding-bottom: 24px;
  padding-left: 0;
  padding-right: 0;
}

.target-features {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 32px;
}

.target-features.markets {
  width: 880px;
}

.text-gray {
  color: var(--base-gray);
}

.uppercase {
  text-transform: uppercase;
}

.target {
  background-color: var(--primary-white);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 158px;
  position: relative;
}

.target-text.text-gray.uppercase {
  font-size: 15px;
}

.target-data-point {
  color: #18181b;
  text-align: center;
  margin-top: 8px;
  font-size: 30px;
  line-height: 30px;
}

.target-data-point.small {
  font-size: 24px;
}

.target-data-point.coming-soon {
  color: var(--darker-gray);
  font-size: 18px;
  font-style: italic;
  line-height: 20px;
}

.corner-top-left-target {
  width: 6px;
  height: 6px;
  text-decoration: none;
  position: absolute;
  inset: 10px auto auto 10px;
  transform: scale(2);
}

.corner-bottom-left-target {
  width: 6px;
  height: 6px;
  text-decoration: none;
  position: absolute;
  inset: auto auto 10px 10px;
  transform: rotate(-90deg)scale(2);
}

.corner-bottom-right-target {
  width: 6px;
  height: 6px;
  text-decoration: none;
  position: absolute;
  inset: auto 10px 10px auto;
  transform: rotate(180deg)scale(2);
}

.corner-top-right-target {
  width: 6px;
  height: 6px;
  text-decoration: none;
  position: absolute;
  inset: 10px 10px auto auto;
  transform: rotate(90deg)scale(2);
}

.tier-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  margin-top: 64px;
  display: flex;
}

.tier-feature {
  background-color: var(--gray-dark);
  flex-flow: column;
  align-items: center;
  width: 100%;
  padding: 24px;
  display: flex;
}

.tier-badge {
  width: 54px;
  min-height: 48px;
}

.tier-row-margin {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  display: flex;
}

.tier-row-pricing {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  display: flex;
}

.tier-row-pricing.price {
  justify-content: center;
  align-items: center;
}

.tier-price-container {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
  position: relative;
}

.strike-through {
  background-color: #f43f5e;
  width: 56px;
  height: 2px;
  position: absolute;
  inset: 42% -5% 0% auto;
  transform: rotate(24deg);
}

.tier-price {
  color: var(--primary-white);
  font-family: Geist, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.tier-price.text-gray {
  color: var(--base-gray);
}

.tier-button-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 18px;
  display: flex;
}

.tier-market-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 6px;
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.25);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.tier-market-badge-gold {
  background: rgba(212, 168, 67, 0.15);
  color: #D4A843;
  border-color: rgba(212, 168, 67, 0.3);
}

.tier-row-detail {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 8px;
  display: flex;
}

/* ── 5-card compact layout overrides ── */
.tier-content-5 .tier-row-pricing .paragraph,
.tier-content-5 .tier-row-detail .paragraph {
  font-size: 12px;
  line-height: 16px;
}
.tier-content-5 .tier-row-pricing .paragraph:first-child,
.tier-content-5 .tier-row-detail .paragraph {
  white-space: nowrap;
  flex-shrink: 0;
}
.tier-content-5 .tier-row-pricing {
  gap: 8px;
}
.tier-content-5 .tier-row-detail {
  gap: 8px;
}
.tier-content-5 .tier-price {
  font-size: 15px;
}
.tier-content-5 .strike-through {
  width: 36px;
  inset: 40% -4% 0% auto;
}
.tier-content-5 .tier-button-container {
  margin-top: auto;
}
.tier-content-5 .tier-row-margin {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

/* ── Uniform badge sizing across all tier cards ── */
.tier-content-5 .tier-badge img {
  width: 54px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}
/* Starter logomark fills its viewbox more aggressively than the tier
   chevron badges, so scale it down to visually match Tier I */
.tier-content-5 .tier-feature:first-child .tier-badge img {
  width: 44px;
  height: 44px;
}

/* ── Rotating gradient border on card hover ── */
@keyframes tier-border-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.tier-content-5 .tier-feature {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
}

/* Spinning gradient — lives behind content via negative z-index */
.tier-content-5 .tier-feature::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    transparent 25%,
    rgba(96, 165, 250, 0.4) 38%,
    #60a5fa 50%,
    rgba(96, 165, 250, 0.4) 62%,
    transparent 75%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -2;
}

/* Dark interior cover — creates the "border" by exposing only the 2px edge */
.tier-content-5 .tier-feature::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--gray-dark);
  border-radius: 10px;
  z-index: -1;
}

/* Fade in + start spinning on hover (Starter–Tier III) */
.tier-content-5 .tier-feature:hover::before {
  opacity: 1;
  animation: tier-border-spin 3s linear infinite;
}

/* Tier IV — gold gradient, always spinning, visible by default */
.tier-content-5 .tier-feature:last-child::before {
  background: conic-gradient(
    transparent 25%,
    rgba(212, 168, 67, 0.4) 38%,
    #D4A843 50%,
    rgba(212, 168, 67, 0.4) 62%,
    transparent 75%
  );
  opacity: 1;
  animation: tier-border-spin 3s linear infinite;
}

/* Hide Tier IV border when hovering a different card */
.tier-content-5:hover .tier-feature:last-child:not(:hover)::before {
  opacity: 0;
}

/* ── Rotating gradient border on CTA buttons ── */
.tier-content-5 .tier-button-container a {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Spinning gradient — square so conic arc sweeps cleanly around all 4 edges */
.tier-content-5 .tier-button-container a::before {
  content: '';
  position: absolute;
  width: 200%;
  aspect-ratio: 1 / 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    transparent 25%,
    rgba(96, 165, 250, 0.4) 38%,
    #60a5fa 50%,
    rgba(96, 165, 250, 0.4) 62%,
    transparent 75%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: tier-border-spin 3s linear infinite;
  z-index: -2;
}

/* Dark interior cover */
.tier-content-5 .tier-button-container a::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--background);
  border-radius: 3px;
  z-index: -1;
}

/* Show on any hover within the card (not just hovering the button itself) */
.tier-content-5 .tier-feature:hover .tier-button-container a {
  background-color: var(--background);
  color: var(--primary-white);
}

.tier-content-5 .tier-feature:hover .tier-button-container a::before {
  opacity: 1;
}

/* Tier IV button — gold, always visible by default */
.tier-content-5 .tier-feature:last-child .tier-button-container a::before {
  background: conic-gradient(
    transparent 25%,
    rgba(212, 168, 67, 0.4) 38%,
    #D4A843 50%,
    rgba(212, 168, 67, 0.4) 62%,
    transparent 75%
  );
  opacity: 1;
}

/* Hide Tier IV button border when hovering a different card */
.tier-content-5:hover .tier-feature:last-child:not(:hover) .tier-button-container a::before {
  opacity: 0;
}

.bookend-sections {
  padding-top: 64px;
  padding-bottom: 64px;
}

.bookend-header {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 742px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.button-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.button-wrapper.col-bg-crypto {
  background-color: var(--gray-dark);
  color: var(--gray-dark);
}

.button-wrapper.col-bg-crypto.mt-0 {
  margin-top: 0;
}

.button-wrapper.hiw {
  margin-top: 48px;
}

.button-group-nav {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.nav-item-footer {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
}

.heading-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 870px;
  display: flex;
}

.heading-wrapper.about-us {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 760px;
}

.hero-video {
  z-index: -1;
  opacity: .55;
  width: 100vw;
  height: 100vh;
  margin-top: 0;
  display: block;
  position: absolute;
  inset: 0% 0% auto auto;
}

.background-video {
  width: 100%;
}

.hero-hiw-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.hero-hiw-content.text-centered.flex-centered {
  justify-content: center;
  align-items: center;
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hiw-hero-section {
  padding-top: 88px;
  padding-bottom: 128px;
  padding-right: 0;
}

.hiw-challenge {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.hiw-steps-detail {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border: 1px solid var(--gray-dark);
  background-color: #000;
  border-radius: 1px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 24px 32px;
  display: flex;
}

.hiw-steps {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  width: 100%;
  min-height: 113px;
  margin-top: 40px;
  display: flex;
}

.img-hiw-challenge {
  width: 100%;
}

.hiw-steps-detail-text {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.hiw-challenge-icon {
  width: 63px;
}

.hiw-step-3-section {
  background-image: url('../images/hiw-payout.png');
  background-position: 0 0;
  background-size: auto;
  padding-top: 128px;
  padding-bottom: 128px;
}

.step-header {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: center;
  max-width: 690px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.feature-content {
  grid-column-gap: 130px;
  grid-row-gap: 130px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 64px;
}

.goal-content {
  text-align: center;
  max-width: 550px;
  margin-top: 8px;
  font-size: 20px;
  line-height: 30px;
}

.goal-content.small {
  font-size: 24px;
}

.goal-content.note {
  max-width: 590px;
  font-size: 16px;
  font-style: italic;
  line-height: 22px;
}

.goal-highlight {
  background-color: var(--primary-white);
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 728px;
  height: 158px;
  position: relative;
}

.goal-content-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.hiw-step-1-section-copy {
  background-image: url('../images/evaluation.jpg');
  background-position: 0 0;
  background-size: auto;
  padding-top: 128px;
  padding-bottom: 128px;
}

.hiw-step-2-section {
  padding-top: 128px;
  padding-bottom: 128px;
}

.goal-content-footer {
  text-align: center;
  max-width: 550px;
  margin-top: 8px;
  font-family: Geist, Arial, sans-serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 23px;
}

.goal-content-footer.small {
  font-size: 24px;
}

.activated-rule {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: center;
  width: 256px;
  display: flex;
}

.home-hero-data {
  background-color: #000;
  justify-content: space-around;
  width: 100%;
  max-width: 826px;
  margin-top: 88px;
  display: flex;
}

.home-hero-data-detail {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  margin-top: 32px;
  margin-bottom: 32px;
  display: flex;
}

.data-kicjer {
  color: var(--darker-gray);
  text-align: center;
  font-family: Dinot, Arial, sans-serif;
}

.text-block-2 {
  color: var(--primary-white);
  text-align: center;
  font-family: Dinot, Arial, sans-serif;
  font-size: 32px;
  line-height: 32px;
}

.activated-rule-expanded {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: center;
  width: 393px;
  display: flex;
}

.funding-scaling {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: var(--gray-dark);
  justify-content: center;
  align-items: center;
  max-width: 750px;
  margin-top: 39px;
  padding: 24px 43px;
}

.center-wrapping {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  display: flex;
}

.hiw-evaluation-section {
  padding-top: 32px;
  padding-bottom: 128px;
}

.faq-section {
  padding-top: 128px;
  padding-bottom: 128px;
  padding-right: 0;
}

.faq-section.faq-page {
  padding-top: 0;
  padding-bottom: 128px;
}

.header-wrapper.markets {
  width: 546px;
}

.header-wrapper.markets.micorsite {
  width: 800px;
}

.header-wrapper.model, .header-wrapper.about-us-future {
  width: 650px;
}

.pre-header {
  justify-content: center;
  display: flex;
}

.image-8 {
  max-width: 100%;
}

.pre-header-image {
  background-color: var(--gray-dark);
  max-width: 1000px;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.faq-wrap {
  border: 1px solid var(--gray-dark);
  cursor: pointer;
  border-radius: 1px;
  width: 48%;
  padding: 24px;
}

.faq-question {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #151515;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.3;
  display: flex;
}

.h5 {
  letter-spacing: -.5px;
  font-size: 24px;
  font-weight: 700;
  line-height: 134%;
}

.h5.text-white {
  color: var(--primary-white);
}

.faq-icon {
  justify-content: center;
  align-items: center;
  min-width: 40px;
  min-height: 40px;
  max-height: 40px;
  display: flex;
  position: relative;
}

.line-1 {
  background-color: var(--primary-white);
  border-radius: 100vw;
  min-width: 16px;
  min-height: 1.5px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 0;
}

.line-2 {
  background-color: var(--primary-white);
  min-width: 16px;
  min-height: 1.5px;
  color: var(--primary-white);
  border-radius: 100vw;
  position: absolute;
  transform: rotate(90deg);
}

.accordion-details-wrap {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-answer {
  color: var(--base-gray);
  font-family: Geist, Arial, sans-serif;
}

.heading-faq {
  color: var(--primary-white);
  font-family: Geist, Arial, sans-serif;
  font-size: 20px;
}

.faq-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
}

.flex-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  align-items: center;
  display: flex;
}

.subhead-wrapper.hero {
  width: 680px;
}

.subhead-wrapper.hero.pricing {
  width: 490px;
}

.hero-markets-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.hero-markets-content.text-centered.flex-centered {
  justify-content: center;
  align-items: center;
  width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.market-assets-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.market-assets-detail {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border: 1px solid var(--gray-dark);
  background-color: #000;
  border-radius: 1px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 300px;
  padding: 24px 32px;
  display: flex;
}

.market-hero-section {
  padding-top: 88px;
  padding-bottom: 128px;
  padding-right: 0;
}

.market-crypto-section {
  padding-top: 128px;
  padding-bottom: 128px;
}

.text-span {
  color: #10b981;
}

.crypto-ui {
  width: 444px;
}

.markets-crypto {
  justify-content: space-around;
  align-items: center;
}

.markets-crypto.microsite {
  flex-flow: column;
}

.major-pairs {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  margin-top: 48px;
  display: flex;
}

.benefits {
  margin-top: 48px;
}

.pair-details {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
}

.pair-details.f-vert {
  flex-flow: column;
}

.crypto-assets {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
}

.m-0 {
  margin: 0;
}

.text-block-3 {
  font-family: Geist, Arial, sans-serif;
}

.list-item {
  color: var(--primary-white);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Geist, Arial, sans-serif;
  font-size: 16px;
}

.list-item.model {
  color: var(--base-gray);
  font-size: 20px;
}

.pair-detail-logo {
  width: 38px;
  height: 38px;
}

.pair-detail-logo.lg {
  width: 60px;
  height: 60px;
}

.pill-image {
  width: 24px;
}

.ticker-section {
  margin-top: 88px;
}

.ticker-section.micro-site {
  margin-top: 0;
  margin-bottom: 88px;
}

.ticker-wrap {
  overflow: hidden;
}

.top-track {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.pill {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border: 1px solid var(--darker-gray);
  border-radius: 20px;
  justify-content: center;
  min-width: 139px;
  padding: 8px 13px;
  display: flex;
}

.bottom-track {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: flex-end;
  display: flex;
}

.markets-forex {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-around;
  align-items: center;
}

.market-forex-section {
  padding-top: 128px;
  padding-bottom: 128px;
}

.major-pair-img {
  border-radius: 100px;
  width: 100%;
}

.text-legal {
  color: var(--darker-gray);
  font-family: Geist, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
}

.markets-evaluation-section {
  padding-top: 128px;
  padding-bottom: 64px;
}

.evalution-grid {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 32px;
}

.comparison-grid-section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 128px;
  padding-bottom: 128px;
}

.comparison-table-grid {
  flex-direction: column;
  height: auto;
  display: flex;
}

.comparison-content {
  flex-direction: row;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.comparison-title {
  height: 63px;
  color: var(--primary-white);
  border-bottom: 1px solid #2f2f32;
  flex-grow: 1;
  flex-basis: 0%;
  justify-content: center;
  align-items: center;
  font-family: Geist, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  display: flex;
}

.comparison-title.text-centered.px-2 {
  padding-left: 16px;
  padding-right: 16px;
}

.comparison-title.text-centered.col-bg-crypto {
  background-color: #18181b;
  font-size: 16px;
  line-height: 24px;
}

.comparison-title.col-bg-crypto {
  color: var(--primary-white);
  background-color: #f7b73314;
}

.button-wrapper-comparison {
  flex-flow: column;
  justify-content: center;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.header-crypto {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.header-crypto.col-bg-crypto {
  background-color: var(--gray-dark);
  border-bottom: 1px solid #2f2f32;
  height: 125px;
}

.header-forex {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.header-forex.col-bg-crypto {
  background-color: var(--gray-dark);
  border-bottom: 1px solid #2f2f32;
  height: 125px;
}

.empty-grid {
  height: auto;
}

.col-bg-crypto {
  z-index: -1;
  background-color: var(--gray-dark);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.comparison-cell {
  border-bottom: 1px solid #2f2f32;
  border-top-color: var(--darker-gray);
  height: 63px;
  color: var(--primary-white);
  background-color: #0000;
  flex: 1;
  justify-content: center;
  align-items: center;
  font-family: Geist, Arial, sans-serif;
  font-size: 14px;
  display: flex;
  position: static;
}

.comparison-cell.title {
  border: 1px solid var(--darker-gray);
  border-radius: 0;
  width: 100%;
}

.comparison-title-col-1 {
  height: 63px;
  color: var(--primary-white);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding-left: 35%;
  font-family: Geist, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  display: flex;
}

.comparison-title-col-1.text-centered.px-2 {
  padding-left: 16px;
  padding-right: 16px;
}

.comparison-title-col-1.text-centered.col-bg-crypto {
  background-color: #18181b;
}

.comparison-cell-title {
  height: 63px;
  color: var(--primary-white);
  background-color: #0000;
  border-bottom: 1px solid #2f2f32;
  flex: 0 0 35%;
  align-items: center;
  padding-left: 16px;
  font-family: Geist, Arial, sans-serif;
  font-size: 14px;
  display: flex;
}

.comparison-cell-title.title {
  border: 1px solid var(--darker-gray);
  border-radius: 0;
  width: 100%;
}

.column, .column-2 {
  border: 1px solid #2f2f32;
  padding-left: 0;
  padding-right: 0;
}

.empty-column {
  height: 125px;
}

.column-0 {
  border: 1px solid var(--background);
  padding-left: 0;
  padding-right: 0;
}

.market-comparison {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.comparison-cell-button {
  border-bottom: 1px solid #2f2f32;
  border-top-color: var(--darker-gray);
  background-color: #0000;
  height: 100px;
}

.comparison-cell-button.title {
  border: 1px solid var(--darker-gray);
  border-radius: 0;
  width: 100%;
}

.forex-positions {
  width: 640px;
}

.market-comparison-mobile {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

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

.text-left-aligned {
  text-align: left;
}

.challenge-card-m {
  display: none;
}

.our-modal-for-traders-section {
  padding-top: 128px;
  padding-bottom: 128px;
}

.model-content {
  justify-content: space-around;
  align-items: center;
}

.evalution-bullets {
  margin-top: 48px;
}

.evalution-bullets.model {
  margin-top: 28px;
  margin-bottom: 28px;
}

.image-9 {
  width: 100%;
}

.tier-row-feature {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 12px;
}

.tier-feature-highlight {
  color: var(--primary-white);
  font-family: Geist, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.tier-feature-highlight.text-gray {
  color: var(--base-gray);
}

.tier-feature-highlight.pricing {
  font-size: 40px;
  line-height: 40px;
}
.tier-content-5 .tier-feature-highlight.pricing {
  font-size: 26px;
  line-height: 28px;
}

.tier-highlight {
  color: var(--primary-white);
  font-family: Geist, Arial, sans-serif;
  font-size: 16px;
  line-height: 21px;
}

.tier-highlight.problem-point {
  width: auto;
  max-width: 285px;
  line-height: 21px;
}

.tier-highlight.step-kicker {
  color: var(--darker-gray);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
}

.tier-features {
  width: 100%;
  margin-top: 32px;
}

.hero-markets-content-copy {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.hero-markets-content-copy.text-centered.flex-centered {
  justify-content: center;
  align-items: center;
  width: 800px;
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
}

.tier-content-pricing {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  margin-top: 16px;
  margin-bottom: 80px;
  display: flex;
}

.model-image {
  width: 444px;
}

.hr {
  border-bottom: 1px solid #2c2c2e;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 8px;
}

.faq-hero-section {
  padding-top: 88px;
  padding-bottom: 88px;
  padding-right: 0;
}

.about-us-hero-section {
  padding-top: 88px;
  padding-bottom: 0;
  padding-right: 0;
}

.about-us-values-content {
  background-color: var(--primary-white);
  flex-flow: column;
  width: 790px;
  margin-bottom: 54px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 16px;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}

.about-us-hero-image {
  z-index: -1;
  position: absolute;
  inset: 0% 0% auto;
}

.our-philosophy-content {
  background-color: var(--primary-white);
  flex-flow: column;
  width: 790px;
  margin-bottom: 54px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 16px;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}

.philosophy-points {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.philosophy-detail {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--gray-dark);
  flex-flow: column;
  width: 340px;
  min-width: 340px;
  padding: 16px;
  display: flex;
}

.vanta-difference {
  padding-top: 128px;
  padding-bottom: 128px;
}

.vanta-difference-detail {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.vanta-difference-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid var(--gray-dark);
  background-color: var(--background);
  border-radius: 1px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 440px;
  padding: 24px;
  display: flex;
}

.about-us-technology-section {
  padding-top: 128px;
  padding-bottom: 128px;
}

.decentralized-technology {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  width: 610px;
  display: flex;
}

.technology-content {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-around;
  align-items: center;
}

.about-us-the-future-section {
  padding-top: 128px;
  padding-bottom: 128px;
}

.nav-bg {
  z-index: 0;
  background-color: #0000;
  position: absolute;
  inset: 0% 0% auto;
}

.nav-bg.is-scrolled {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #09090bb3;
  width: 100%;
  height: 100%;
}

.social-bar {
  z-index: 2;
  background-color: var(--background);
  position: fixed;
  inset: 40% 0% auto auto;
}

.social-icons {
  width: 24px;
  height: 24px;
}

.social-icon-content {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid var(--gray-dark);
  padding: 16px;
}

.image-10, .image-11, .image-12 {
  width: 100%;
}

.paragraph-2 {
  color: var(--darker-gray);
}

.note.text-centered {
  font-style: italic;
}

.note.text-centered.text-gray {
  width: 50%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.note.text-centered.text-gray._w-50 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.note.text-gray._w-50 {
  width: 56%;
}

.note.text-gray._w-50.italic {
  font-style: italic;
}

.scaling-table {
  grid-template-columns: 1fr .25fr 1fr;
  width: 64%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.scaling-table-header {
  color: var(--base-gray);
  text-align: left;
  text-transform: uppercase;
}

.scaling-table-header.arrow {
  text-align: center;
}

.table-header {
  border-bottom: 1px solid var(--darker-gray);
}

.table-header.middle {
  width: 50px;
}

.scaling-content {
  border-bottom: 1px solid #28282c;
}

.scaling-content.middle {
  border-bottom-style: none;
  width: 50px;
}

.scaling-table-data {
  color: var(--primary-white);
  text-align: left;
  text-transform: none;
}

.scaling-table-data.middle {
  text-align: center;
}

.scaling-points {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  align-items: center;
  width: 50%;
}

.scaling-content-section {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.scaling-table-content {
  width: 50%;
}

.pre-header-social {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 128px;
}

.discord-invite {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  background-color: var(--gray-dark);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 70%;
  max-width: none;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 32px;
}

.mail-sign-up {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid var(--gray-dark);
  background-color: var(--gray-dark);
  width: 40%;
  height: 100%;
  color: var(--background);
  padding: 32px 40px;
}

.discord-invite-icon {
  width: 120px;
}

.image-13 {
  width: 100%;
}

.mailing-list-header {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--primary-white);
  flex-direction: column;
  flex: 1;
  font-size: 24px;
  display: flex;
}

.text-block-4 {
  color: var(--darker-gray);
  font-size: 16px;
}

.discord-invite-header {
  color: var(--primary-white);
  font-family: Dinot, Arial, sans-serif;
  font-size: 30px;
  line-height: 25px;
}

.discord-invite-content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  width: 70%;
  position: relative;
}

.form {
  grid-column-gap: 8px;
  grid-row-gap: 12px;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.form-block {
  flex-grow: 0;
  flex-shrink: 0;
  grid-area: 1 / 2 / 4 / 3;
  align-items: center;
  width: auto;
  display: block;
}

.text-field {
  color: #ffffff40;
  background-color: #0000004d;
  border: 1px solid #fff3;
  border-radius: 0;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  padding: 14px 16px;
  font-size: 16px;
}

.rich-text-block {
  color: var(--darker-gray);
}

.affliiate-content {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.tooltip-wrap {
  position: relative;
}

.tooltip-bubble {
  z-index: 999;
  background-color: var(--background);
  opacity: 0;
  pointer-events: none;
  width: 280px;
  max-width: 280px;
  color: var(--primary-white);
  border: 1px solid #2c2c2e;
  padding: 16px;
  font-size: 12px;
  line-height: 16px;
  display: block;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%);
}

.tooltip-bubble.is-profit, .tooltip-bubble.is-drawdown {
  opacity: 0;
}

.tooltip-bubble.is-scaling {
  opacity: 0;
  width: 320px;
  max-width: 310px;
}

.tooltip-bubble.is-period {
  opacity: 0;
}

.text-block-5 {
  width: 100%;
}

.tier-row-type {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.hiw-challenge-mobile {
  display: none;
}

.footer-legal {
  color: var(--darker-gray);
  font-size: 10px;
}

.footer-legal.risks {
  line-height: 17px;
}

.social-icon-footer {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid var(--gray-dark);
  flex-flow: row;
  padding: 0 16px;
}

.footer-social-logos {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  justify-content: center;
  align-items: center;
}

.footer-container {
  background-color: var(--gray-dark);
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 500px;
  display: none;
}

.top-section {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
}

.logo-section {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 40%;
  color: var(--base-gray);
  flex-flow: column;
  display: flex;
}

.footer-container-new {
  background-color: var(--background);
  height: auto;
  padding: 88px 64px;
  display: block;
}

.footer-logo {
  width: 250px;
}

.image-14 {
  width: 100%;
}

.footer-navigation {
  justify-content: space-around;
  width: 100%;
  display: flex;
}

.footer-nav-header {
  color: var(--primary-white);
  text-transform: uppercase;
  padding-bottom: 8px;
}

.footer-nav-column {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  width: 33%;
}

.connect {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 16px;
}

.text-block-6 {
  text-transform: uppercase;
}

.social-icon-content-horz {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid var(--gray-dark);
  flex-flow: row;
  padding: 16px;
}

.seperator {
  border-top: 1px solid var(--gray-dark);
  border-bottom: 1px solid var(--gray-dark);
  padding-top: 0;
  padding-bottom: 0;
}

.spacer {
  padding-top: 40px;
  padding-bottom: 40px;
}

.bottom-section {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  display: flex;
}

.legal {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
}

.flex {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.risk-discclosure {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  border: 1px solid var(--gray-dark);
  background-color: #0f0f0f;
  border-radius: 1px;
  flex-flow: column;
  padding: 24px;
  display: flex;
}

.flex-h {
  justify-content: space-between;
  align-items: center;
}

.connect-with-us {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 32px;
}

.vanta-network {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #00bc7c2e;
  border: 1px solid #00bc7c;
  border-radius: 1px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 9px;
  display: flex;
}

.block {
  background-color: #00bc7c;
  width: 8px;
  height: 8px;
}

.risk-disclosure-header {
  color: var(--base-gray);
  text-transform: uppercase;
  font-size: 12px;
}

.text-size-sm {
  color: var(--darker-gray);
  font-style: italic;
}

.flex-block-4 {
  justify-content: center;
  align-items: center;
}

.mb-3 {
  margin-bottom: 16px;
}

.grid-legal {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 24px;
  margin-bottom: 24px;
}

.legal-grid {
  border: 1px solid var(--gray-dark);
  color: var(--darker-gray);
  padding: 8px;
}

.legal-grid.header {
  border: 1px solid var(--gray-dark);
  background-color: #46444433;
  padding: 10px;
}

.compare-section {
  padding-top: 128px;
  padding-bottom: 128px;
  display: none;
}

.compare-content {
  background-color: var(--primary-white);
  flex-flow: column;
  width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.lp-page-bg {
  background-color: var(--background);
  color: var(--primary-white);
  flex-flow: column;
  display: flex;
}

.hidden {
  display: block;
}

.comparison-header-row {
  border-bottom: 1px solid #2f2f32;
  flex-flow: row;
  height: 63px;
  display: flex;
}

.comparison-header-spacer {
  flex: 0 0 35%;
}

.comparison-header-cell {
  color: var(--primary-white);
  flex: 1;
  justify-content: center;
  align-items: center;
  font-family: Geist, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  display: flex;
}

.page-section {
  padding-top: 128px;
  padding-bottom: 128px;
}

.image-15 {
  border-radius: 12px;
}

.flex-block-5 {
  justify-content: center;
  align-items: center;
}

.trust-pilot-widget {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  display: flex;
}

.code-embed {
  width: 100%;
}

.mail-sign-up-promo {
  grid-column-gap: 48px;
  grid-row-gap: 20px;
  width: 100%;
  max-width: 900px;
  height: 100%;
  color: var(--background);
  background-color: #0a0a0a;
  border: 1px solid #333;
  flex-flow: row;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 48px;
  display: flex;
  position: relative;
}

.newsletter-content {
  grid-column-gap: 12px;
  grid-row-gap: 8px;
  flex-flow: column;
  flex: 1;
  grid-column: 1 / 3;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  align-items: flex-start;
  width: 377px;
  display: flex;
}

.promo-text {
  width: auto;
  color: var(--darker-gray);
  text-align: left;
  grid-column: 1 / 2;
  font-size: 15px;
}

.promo-text.text-center {
  text-align: center;
  width: 490px;
  line-height: 26px;
}

.promo-header {
  color: var(--primary-white);
  text-align: left;
  font-family: Dinot, Arial, sans-serif;
  font-size: 32px;
  line-height: 36px;
}

.text-span-2 {
  color: var(--darker-gray);
}

.corner-bracket {
  z-index: 10;
  flex-grow: 0;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  position: absolute;
}

.corner-bracket.tl {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  top: -1px;
  left: -1px;
}

.corner-bracket.tr {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: -1px;
  right: -1px;
}

.corner-bracket.bl {
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  bottom: -1px;
  left: -1px;
}

.corner-bracket.br {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  bottom: -1px;
  right: -1px;
}

.corner-bracket-tl {
  z-index: 2;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  width: 10px;
  min-width: 10px;
  max-width: 10px;
  height: 10px;
  min-height: 10px;
  max-height: 10px;
  position: absolute;
  top: 0;
  left: 0;
}

.corner-bracket-tr {
  z-index: 2;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 10px;
  min-width: 10px;
  max-width: 10px;
  height: 10px;
  min-height: 10px;
  max-height: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

.corner-bracket-bl {
  z-index: 2;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  width: 10px;
  min-width: 10px;
  max-width: 10px;
  height: 10px;
  min-height: 10px;
  max-height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.corner-bracket-br {
  z-index: 2;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 10px;
  min-width: 10px;
  max-width: 10px;
  height: 10px;
  min-height: 10px;
  max-height: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.code-embed-2 {
  display: block;
}

.promo-text-2 {
  color: #71717a;
  text-align: left;
  grid-column: 1 / 2;
  width: auto;
  font-size: 15px;
}

.text-span-3 {
  color: #71717a;
}

.code-embed-3 {
  display: block;
}

.promo-header-2 {
  color: #fff;
  text-align: left;
  font-family: Dinot, Arial, sans-serif;
  font-size: 32px;
  line-height: 36px;
}

.mailing-list-header-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fff;
  flex-direction: column;
  flex: 1;
  font-size: 24px;
  display: flex;
}

.mail-sign-up-promo-crypto {
  grid-column-gap: 48px;
  grid-row-gap: 20px;
  color: #09090b;
  background-color: #0a0a0a;
  border: 1px solid #333;
  flex-flow: row;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 900px;
  height: 100%;
  margin: 70px auto 88px;
  padding: 40px 48px;
  display: flex;
  position: relative;
}

.code-embed-4 {
  display: block;
}

.mail-sign-up-promo-copy {
  grid-column-gap: 48px;
  grid-row-gap: 20px;
  width: 100%;
  max-width: 900px;
  height: 80%;
  color: var(--background);
  background-color: #0a0a0a;
  border: 1px solid #333;
  flex-flow: row;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 48px;
  display: flex;
  position: relative;
}

.kicker {
  color: var(--base-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 500;
}

.fine-print {
  color: var(--darker-gray);
  text-align: center;
  font-size: 11px;
}

@media screen and (min-width: 1440px) {
  .container.white-background.steps-container {
    max-width: 92rem;
  }

  .navbar {
    margin-bottom: 24px;
  }

  .heading-h1 {
    margin-top: 0;
    font-size: 80px;
    line-height: 78px;
  }

  .heading-h2, .heading-h2.text-centered {
    font-size: 64px;
    line-height: 80px;
  }

  .heading-h2.m-0._w-100 {
    width: 100%;
  }

  .corner-bottom-left {
    width: 6px;
    height: 6px;
  }

  .corner-top, .corner-bottom {
    background-color: var(--primary-white);
  }

  .corner-top-left {
    width: 6px;
    height: 6px;
  }

  .nav-menu {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
  }

  .home-hero-section {
    padding-bottom: 0;
  }

  .hero-image {
    width: 1400px;
  }

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

  .text-size-medium.text-center.mt-4 {
    margin-top: 24px;
  }

  .section-header {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    max-width: 870px;
  }

  .section-header.markets-evaluation-header {
    max-width: 910px;
  }

  .section-header.center-align._w-100 {
    width: 100%;
    max-width: none;
  }

  .nav-corner-old {
    width: 16px;
    height: 24px;
    position: relative;
  }

  .nav-item {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: flex;
    position: relative;
  }

  .nav-corner.right {
    transform: none;
  }

  .corner-top-right {
    width: 6px;
    height: 6px;
    transform: rotateX(0)rotateY(180deg)rotateZ(0);
  }

  .corner-bottom-right {
    width: 6px;
    height: 6px;
    transform: rotateX(180deg)rotateY(180deg)rotateZ(0);
  }

  .step-content {
    width: 930px;
  }

  .steps-content {
    margin-left: 100px;
    margin-right: 100px;
  }

  .evaluation-header {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    max-width: 1000px;
  }

  .evaluation-target-content {
    margin-top: 56px;
  }

  .target-data-point.coming-soon {
    color: var(--darker-gray);
    font-size: 18px;
    font-style: italic;
    line-height: 20px;
  }

  .corner-top-left-target, .corner-bottom-left-target, .corner-bottom-right-target, .corner-top-right-target {
    width: 6px;
    height: 6px;
  }

  .bookend-header {
    max-width: 900px;
  }

  .nav-item-footer {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: flex;
    position: relative;
  }

  .heading-wrapper {
    flex-flow: column;
    width: 1090px;
    display: flex;
  }

  .heading-wrapper.about-us {
    width: 900px;
  }

  .hero-video {
    width: 100%;
  }

  .hero-hiw-content.text-centered.flex-centered {
    width: 1000px;
  }

  .step-header {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    max-width: 800px;
  }

  .header-wrapper.markets.micorsite {
    width: 100%;
  }

  .hero-markets-content.text-centered.flex-centered {
    width: 950px;
  }

  .markets-crypto.microsite {
    flex-flow: column;
  }

  .major-pairs {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .pair-details.f-vert {
    flex-flow: column;
  }

  .crypto-assets {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .pair-detail-logo.lg {
    width: 60px;
    height: 60px;
  }

  .ticker-section.micro-site {
    margin-top: 88px;
  }

  .hero-markets-content-copy.text-centered.flex-centered {
    width: 1000px;
  }

  .about-us-hero {
    margin-left: auto;
    margin-right: auto;
  }

  .about-us-values-content {
    width: 930px;
  }

  .about-us-hero-image {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .our-philosophy-content {
    width: 930px;
  }

  .markets-features {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    display: flex;
  }

  .footer-container-new {
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
  }

  .compare-content {
    width: 930px;
  }

  .mail-sign-up-promo, .mail-sign-up-promo-crypto, .mail-sign-up-promo-copy {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    max-width: 870px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 40rem;
  }

  .container.white-background.steps-container {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .text-size-large {
    font-size: 20px;
    line-height: 24px;
  }

  .footer-nav-links {
    flex-flow: wrap;
  }

  .hamburger {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: column;
    display: flex;
  }

  .hambuger-line.top, .hambuger-line.middle, .hambuger-line.bottom {
    background-color: #fff;
    width: 20px;
    height: 2px;
  }

  .step-content {
    width: 100%;
  }

  .steps-content {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: row;
    margin-left: 20px;
    margin-right: 20px;
  }

  .target-features {
    flex-flow: wrap;
  }

  .target {
    max-width: 170px;
  }

  .tier-content {
    flex-flow: column;
  }

  .hero-hiw-content.text-centered.flex-centered {
    width: 100%;
  }

  .hiw-steps {
    flex-flow: wrap;
  }

  .feature-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .pre-header {
    padding-left: 48px;
    padding-right: 48px;
  }

  .h5 {
    font-size: 22px;
  }

  .accordion-details-wrap {
    margin-top: 16px;
    margin-bottom: 8px;
  }

  .subhead-wrapper.hero, .hero-markets-content.text-centered.flex-centered {
    width: 100%;
  }

  .markets-forex {
    flex-flow: column;
  }

  .market-comparison {
    width: 100%;
  }

  .challenge-card-m {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .challenge-card {
    display: none;
  }

  .tier-content-pricing {
    flex-flow: column;
  }

  .about-us-values-content {
    width: 100%;
  }

  .about-us-hero-image {
    top: 20%;
  }

  .our-philosophy-content, .philosophy-points, .vanta-difference-detail, .note.text-gray._w-50.italic {
    width: 100%;
  }

  .footer-navigation {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .flex-block-3 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .compare-content {
    width: 100%;
  }

  .mail-sign-up-promo, .mail-sign-up-promo-crypto, .mail-sign-up-promo-copy {
    flex-flow: column;
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .faq-question {
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .h5 {
    font-size: 20px;
  }

  .accordion-details-wrap {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 479px) {
  .page-wrapper {
    margin-top: 60px;
  }

  .body {
    overflow: visible;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .container.white-background.steps-container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .navbar {
    margin-top: 0;
    padding-top: 8px;
    position: fixed;
  }

  .navbar.is-scrolled {
    flex-flow: column;
    padding-bottom: 0;
    display: block;
  }

  .brand {
    width: 70px;
  }

  .button-group {
    margin-top: 0;
  }

  .button-outline {
    display: none;
  }

  .button-outline._w-full {
    display: block;
  }

  .button-outline.mobile {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    display: block;
  }

  .heading-h1 {
    margin-top: 0;
    font-size: 40px;
    line-height: 48px;
  }

  .heading-h2, .heading-h2.text-centered, .heading-h2.on-white.step-heading {
    font-size: 32px;
    line-height: 40px;
  }

  .heading-h3 {
    line-height: 48px;
  }

  .heading-h3.text-centered {
    font-size: 24px;
  }

  .paragraph.tier-fee, .paragraph.teir-fee {
    font-size: 14px;
    line-height: 18px;
  }

  .nav-inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .text-size-large {
    font-size: 20px;
    line-height: 28px;
  }

  .nav-label-old {
    z-index: 1;
    color: var(--primary-white);
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 60px;
    font-size: 26px;
    font-weight: 400;
    display: flex;
  }

  .footer {
    padding: 20px;
  }

  .footer-logos {
    flex-flow: column;
  }

  .footer-nav {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    align-items: center;
    margin-top: 54px;
    margin-bottom: 54px;
  }

  .left-corners {
    justify-content: space-between;
    align-items: center;
    width: 20px;
    height: 120px;
    transform: rotate(90deg);
  }

  .footer-nav-links {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
  }

  .right-corners {
    justify-content: space-between;
    align-items: center;
    width: 20px;
    height: 120px;
    transform: rotate(270deg);
  }

  .footer-logos-bottom {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .image {
    display: none;
  }

  .image-2 {
    height: 100%;
    display: block;
  }

  .menu-button.w--open {
    background-color: var(--background);
  }

  .nav-menu {
    z-index: 1;
    opacity: 1;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    text-align: left;
    background-color: #09090bb3;
    height: 100vh;
    margin-top: 0;
    padding-top: 48px;
    font-family: Dinot, Arial, sans-serif;
    font-size: 22px;
  }

  .image-3 {
    flex: 0 auto;
    display: none;
  }

  .home-hero-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .hero-image {
    width: 100%;
    max-width: 500px;
    inset: 25% auto auto 0%;
  }

  .problem-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .problem-row {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }

  .section-header.faq, .section-header.faq-page {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .hamburger {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .hambuger-line {
    background-color: var(--primary-white);
    border-radius: 999px;
    width: 20px;
    height: 2px;
  }

  .image-5 {
    z-index: 0;
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    width: 100vh;
    height: 100vw;
    display: block;
    position: absolute;
    inset: 0% auto auto 0%;
  }

  .nav-label {
    color: var(--primary-white);
    font-size: 24px;
  }

  .nav-label.footer {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
  }

  .nav-item {
    justify-content: flex-start;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 84px;
  }

  .nav-corner {
    justify-content: space-between;
    align-items: center;
    width: 20px;
    height: 120px;
    transform: rotate(90deg);
  }

  .nav-corner.left {
    display: none;
    position: relative;
  }

  .nav-corner.right {
    display: none;
  }

  .step-content {
    align-items: stretch;
    width: 100%;
  }

  .steps-content {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  .evaluation-section {
    padding-top: 88px;
    padding-bottom: 40px;
  }

  .evaluation-target-content {
    margin-top: 88px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .target-features {
    flex-flow: column;
  }

  .target {
    max-width: none;
    height: 100px;
  }

  .target-data-point {
    color: var(--gray-dark);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    font-size: 22px;
  }

  .target-data-point.small {
    font-size: 18px;
  }

  .target-data-point.small.mobile, .target-data-point.coming-soon.mobile {
    margin-top: 0;
  }

  .tier-content {
    flex-flow: column;
  }

  .tier-feature {
    padding-left: 16px;
    padding-right: 16px;
  }

  .button-group-nav {
    margin-top: 0;
  }

  .nav-item-footer {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .image-6 {
    display: block;
  }

  .image-7 {
    display: none;
  }

  .heading-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .heading-wrapper.about-us {
    width: 100%;
  }

  .hero-video {
    width: 100vw;
    max-width: none;
    inset: 25% auto auto 0%;
  }

  .hero-hiw-content.text-centered.flex-centered {
    width: 100%;
  }

  .hiw-hero-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .hiw-steps {
    flex-flow: column;
  }

  .img-hiw-challenge {
    display: none;
  }

  .hiw-step-3-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .feature-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
  }

  .goal-content {
    font-size: 16px;
    line-height: 20px;
  }

  .goal-highlight {
    height: auto;
    padding: 20px;
  }

  .goal-content-footer {
    line-height: 16px;
  }

  .home-hero-data {
    flex-flow: column;
  }

  .activated-rule-expanded {
    width: auto;
  }

  .funding-scaling {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hiw-evaluation-section {
    padding-top: 64px;
  }

  .faq-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .header-wrapper.markets, .header-wrapper.markets.micorsite, .header-wrapper.model, .header-wrapper.about-us-future {
    width: 100%;
  }

  .pre-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-wrap {
    width: 100%;
  }

  .faq-question {
    padding-top: 16px;
    padding-bottom: 6px;
  }

  .faq-icon {
    min-width: 30px;
    min-height: 30px;
  }

  .accordion-details-wrap {
    margin-top: -6px;
    margin-bottom: 10px;
  }

  .faq-answer {
    margin-top: 16px;
  }

  .subhead-wrapper.hero {
    width: auto;
  }

  .subhead-wrapper.hero.pricing, .hero-markets-content.text-centered.flex-centered {
    width: 100%;
  }

  .market-assets-wrapper {
    flex-flow: column;
  }

  .market-assets-detail {
    width: auto;
  }

  .market-hero-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .market-crypto-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .crypto-ui {
    width: auto;
  }

  .markets-crypto {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .major-pairs {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    display: flex;
  }

  .benefits {
    width: auto;
  }

  .crypto-assets {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .list-item.model {
    font-size: 18px;
    line-height: 24px;
  }

  .pair-detail-logo {
    width: 32px;
  }

  .pair-detail-logo.lg {
    width: 40px;
    height: 40px;
  }

  .markets-forex {
    flex-flow: column;
  }

  .market-forex-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .markets-evaluation-section {
    padding-top: 64px;
  }

  .evalution-grid {
    flex-flow: column;
    grid-auto-flow: column;
    justify-items: stretch;
    margin-bottom: 24px;
    display: flex;
  }

  .comparison-grid-section {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .comparison-title.text-centered.col-bg-crypto {
    justify-content: flex-start;
    align-items: center;
  }

  .comparison-title.text-centered.col-bg-crypto.mobile {
    justify-content: flex-end;
    align-items: center;
    padding-right: 10px;
  }

  .comparison-title.col-bg-crypto {
    justify-content: flex-start;
    align-items: center;
  }

  .comparison-title.col-bg-crypto.text-left-aligned {
    padding-left: 10px;
    font-size: 14px;
    line-height: 20px;
  }

  .comparison-title.col-bg-crypto.text-righ-aligned {
    justify-content: flex-end;
    align-items: center;
    padding-right: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    display: flex;
  }

  .comparison-cell {
    justify-content: space-between;
    align-items: center;
    height: 70px;
    display: flex;
  }

  .column {
    margin-top: 20px;
  }

  .market-comparison {
    width: 100%;
    display: none;
  }

  .forex-positions {
    width: auto;
    margin-bottom: 32px;
  }

  .market-comparison-mobile {
    width: 100%;
    display: block;
  }

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

  .text-left-aligned {
    text-align: left;
  }

  .challenge-card-m {
    display: block;
  }

  .challenge-card {
    display: none;
  }

  .our-modal-for-traders-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .model-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .evalution-bullets {
    width: auto;
  }

  .tier-highlight.tier-fee, .tier-highlight.teir-fee {
    font-size: 14px;
    line-height: 18px;
  }

  .hero-markets-content-copy.text-centered.flex-centered {
    width: 100%;
  }

  .tier-content-pricing {
    flex-flow: column;
  }

  .model-image {
    width: auto;
    margin-top: 48px;
  }

  .faq-hero-section, .about-us-hero-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .about-us-hero {
    width: 610px;
    max-width: 250%;
  }

  .about-us-values-content {
    align-items: stretch;
    width: 100%;
    padding-top: 6px;
  }

  .about-us-hero-image {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    top: 415px;
  }

  .our-philosophy-content {
    align-items: stretch;
    width: 100%;
    padding-top: 6px;
  }

  .philosophy-points {
    flex-flow: column;
    width: auto;
    margin-top: 16px;
  }

  .philosophy-detail {
    width: 100%;
    min-width: 0;
    max-width: 340px;
  }

  .vanta-difference-detail {
    flex-flow: column;
    width: 100%;
  }

  .vanta-difference-item {
    width: 100%;
    max-width: 340px;
  }

  .about-us-technology-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .decentralized-technology {
    width: auto;
  }

  .technology-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .about-us-the-future-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .social-icon-content {
    display: none;
  }

  .note.text-centered.text-gray, .note.text-gray._w-50.italic, .scaling-table, .scaling-points {
    width: 100%;
  }

  .scaling-content-section {
    flex-flow: column;
  }

  .scaling-table-content {
    width: 100%;
    margin-top: 32px;
  }

  .discord-invite {
    flex-flow: column;
    width: 90%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .discord-invite-icon {
    width: 90px;
  }

  .discord-invite-header {
    line-height: 29px;
  }

  .hiw-challenge-mobile {
    display: block;
  }

  .markets-features {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    display: flex;
  }

  .social-icon-footer {
    display: flex;
  }

  .logo-section {
    width: 100%;
  }

  .footer-container-new {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-navigation {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-nav-column {
    width: 90%;
  }

  .flex-block-3 {
    flex-flow: column;
    width: 100%;
  }

  .connect {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .social-icon-content-horz {
    display: flex;
  }

  .risk-discclosure {
    padding-left: 16px;
    padding-right: 16px;
  }

  .flex-h {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .connect-with-us {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .text-block-7 {
    width: 100%;
  }

  .compare-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .compare-content {
    align-items: stretch;
    width: 100%;
  }

  .page-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .mail-sign-up-promo {
    flex-flow: column;
    width: 94%;
    max-width: 320px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .newsletter-content {
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

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

  .promo-header {
    text-align: center;
    line-height: 29px;
  }

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

  .promo-header-2 {
    text-align: center;
    line-height: 29px;
  }

  .mail-sign-up-promo-crypto, .mail-sign-up-promo-copy {
    flex-flow: column;
    width: 94%;
    max-width: 320px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

#w-node-_857fc25c-7508-ca85-bf1a-d0245c7417bc-cf4cc76b {
  place-self: center;
}

#w-node-e48b409e-d362-bed8-b7c0-255c2ea56fea-cf4cc76b, #w-node-_7f4a53fc-c6c5-8de4-2c33-1ea2e0d88d89-cf4cc76b, #w-node-bb49872e-ee1a-3aeb-828c-85bc1caa36e4-cf4cc76b, #w-node-_2901b298-ea21-e714-4e08-9d56f8d7a131-cf4cc76b, #w-node-_9d889154-4093-c17f-2410-1ea301c20e77-cf4cc76b, #w-node-_78b624b2-0429-7dc3-7458-18f927fc1b57-cf4cc76b, #w-node-_255a2b95-e8e5-cdb1-4d9d-1a54683c0cb5-cf4cc76b, #w-node-_345dda10-7ec8-2023-300a-430443ee996f-cf4cc76b, #w-node-_69fb2757-d169-1633-cfed-add70da59967-cf4cc76b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_63727d20-bc60-93f8-f339-fb477232c810-b697253b {
  place-self: auto;
}

#w-node-dca4d9aa-6b68-0c1d-30a4-51737052b2ec-b697253b, #w-node-_90ffa2f5-b678-5cbc-866e-bad1d7fc22f9-b697253b, #w-node-_943fb2b8-a82d-b86b-c404-c8107cf5edee-b697253b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

@media screen and (max-width: 479px) {
  #w-node-_89d03ea0-59ea-4f71-27ef-af7064cab05f-b697253b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


/* ── HL ANNOUNCEMENT BANNER ── */
.hl-announce-banner {
  background: #50e3c2;
  width: 100%;
  position: relative;
  z-index: 1001;
}
.hl-announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.hl-announce-logo {
  height: 16px;
  width: auto;
}
.hl-announce-text {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
}
.hl-announce-link {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  text-decoration: underline;
  white-space: nowrap;
}
.hl-announce-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .hl-announce-inner {
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 16px;
    text-align: center;
  }
  .hl-announce-text {
    font-size: 12px;
  }
  .hl-announce-link {
    font-size: 12px;
  }
}

/* ── MARKET SUB-TOGGLE ── */
.market-sub-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 0 auto 12px;
  background: #1a1a2e;
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
}
.market-sub-btn {
  padding: 10px 28px;
  border: 1.5px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #71717a;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Geist', sans-serif;
}
.market-sub-btn:hover {
  color: #a1a1aa;
}
.market-sub-btn.active {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 10px rgba(255,255,255,0.08);
}
.market-sub-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #a1a1aa;
  margin-bottom: 8px;
  font-family: 'Geist', sans-serif;
  letter-spacing: 0.03em;
}

/* ── 5-CARD TIER LAYOUT ── */
.tier-content-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.tier-content-5 .tier-feature {
  width: auto;
}
@media screen and (max-width: 991px) {
  .tier-content-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .tier-content-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .market-sub-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .tier-content-5 {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ── TWO WAYS TO TRADE ── */
.two-ways-section {
  padding: 100px 0 60px;
}
.two-ways-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.two-ways-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  padding: 36px 32px 32px;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.two-ways-card:hover {
  border-color: rgba(255,255,255,0.3);
}
.two-ways-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #22c55e;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  text-transform: uppercase;
  font-family: 'Geist', sans-serif;
}
.two-ways-card-header {
  margin-bottom: 24px;
}
.two-ways-card-body {
  flex: 1;
  margin-bottom: 28px;
}
.two-ways-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #a1a1aa;
  line-height: 1.5;
}
.two-ways-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 9px;
  font-weight: 800;
  margin-top: 2px;
}
.two-ways-card-footer {
  margin-top: auto;
}
.two-ways-shared {
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── PLATFORM TOGGLE ── */
.platform-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 24px;
  padding: 20px 28px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  width: fit-content;
  min-width: 540px;
}
.platform-module-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  font-family: 'Geist', sans-serif;
}
.platform-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
}
.platform-toggle-btn {
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: #a1a1aa;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Geist', sans-serif;
}
.platform-toggle-btn:first-child {
  border-right: 1px solid rgba(255,255,255,0.15);
  margin-right: -1px;
}
.platform-toggle-btn.active {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
.platform-toggle-btn:last-child.active {
  border-color: #00d4aa;
  color: #00d4aa;
  background: rgba(0,212,170,0.08);
}
.hl-new-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0,212,170,0.15);
  color: #00d4aa;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 7px;
  vertical-align: middle;
  border: 1px solid rgba(0,212,170,0.3);
  transition: opacity 0.2s;
}
.platform-toggle-btn:last-child.active .hl-new-badge {
  display: none;
}
.platform-subtitle {
  text-align: center;
  font-size: 15px;
  color: #a1a1aa;
  margin-top: 14px;
  margin-bottom: 0;
  font-family: 'Geist', sans-serif;
}

@media screen and (max-width: 767px) {
  .two-ways-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .platform-toggle-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

@font-face {
  font-family: 'Dinot';
  src: url('../fonts/DINOT.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist-Regular.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jetbrainsmono';
  src: url('../fonts/JetBrainsMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}