@font-face {
  font-family: 'Aeonik';
  src: url('fonts/Aeonik/AeonikPro-Regular.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 255, 62, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 255, 62, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

html {
  overscroll-behavior: none;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: 1rem;
  line-height: 1.6;
  background: var(--bg-dark);
  color: var(--text);
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

:root {
  --font-sans: 'Aeonik', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi-bold: 600;
  --fw-bold: 700;

  /* MAX-WIDTH */
  --max-w1: 1100px;
  --max-w2: 38rem;
  --max-w3: 950px;

  /* PADDING */

  --padding-v: 8rem;
  --padding-h: 2rem;

  --padding-vm: 4rem;
  --padding-hm: 1rem;

  /* COLORS */
  --primary: #B2FF32;

  --bg-dark: hsl(0, 0%, 4%);
  --bg: hsl(0, 0%, 6%);
  --bg-light: hsl(0, 0%, 10%);

  --bg-hover: hsl(0, 0%, 8%);

  --gray-5: hsl(0, 0%, 5%);
  --gray-10: hsl(0, 0%, 10%);
  --gray-20: hsl(0, 0%, 20%);
  --gray-30: hsl(0, 0%, 30%);
  --gray-40: hsl(0, 0%, 40%);
  --gray-50: hsl(0, 0%, 50%);
  --gray-60: hsl(0, 0%, 60%);
  --gray-70: hsl(0, 0%, 70%);
  --gray-80: hsl(0, 0%, 80%);

  --text: hsl(0, 0%, 95%);
  --text-muted: hsl(0, 0%, 70%);

  --border-light: hsl(0, 0%, 39%);
  --border: hsl(0, 0%, 28%);
  --border-muted: hsl(0, 0%, 18%);

  --div-gradient: linear-gradient(to bottom, #121212, #0F0F0F);



  /* SHADOW AND LIGHTING */

  --depth: inset 0 1px 2px var(--border-muted), 0 1px 4px hsl(0, 0%, 3%);
  --depth-s: inset 0 1px 2px var(--border-muted), 0 1px 2px hsl(0, 0%, 5%);
  --depth-l: inset 0 1px 2px var(--border-muted), 0 3px 8px hsl(0, 0%, 2%);
  --depth-sn: inset 0 1px 2px hsla(0, 0%, 100%, 0.1), 0 1px 2px hsla(0, 0%, 0%, 0.2);

  --highlight: inset 0 1px 2px hsl(0, 0%, 20%);
  --highlight-s: inset 0 1px 2px var(--border-muted);
  --highlight-2: inset 0 1px 2px var(--border-muted);
  --highlight-sn: inset 0 1px 2px hsla(0, 0%, 100%, 0.1);


  --depth-button: inset 0 1px 2px var(--border), 0 2px 2px hsl(0, 0%, 5%);

  /* TRANSITIONS */
  --transition-s: 0.4s ease;
  --transition-m: 0.3s ease;
  --transition-f: 0.2s ease;

}


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

p {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-muted);
}

h1 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -2%;
}

h2 {
  font-family: var(--font-sans);
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -2%;
}

h3 {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -2%;

}

h4 {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: 1.5rem;
  line-height: 1.4;
}

h5 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 400;

}

h6 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  h2 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  h3 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  h4 {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

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

.mr-auto {
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}


/*--------GLOBAL--------*/
a {
  color: var(--primary);
}

button {
  font-family: var(--font-sans);
}

.flex-h {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
  row-gap: 1rem;
  flex-wrap: wrap;
}

.line-h {
  width: 100%;
  height: 1px;
  background: var(--border-muted);
}

.section {
  background: var(--bg-dark);
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}

.section-border-bottom {
  border-bottom: solid 1px var(--gray-10);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

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

.section-subheading {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  max-width: var(--max-w2);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-subheading {
    font-size: 1.125rem;
  }
}

.section-content {
  padding-top: var(--padding-v);
  padding-bottom: var(--padding-v);
  padding-left: var(--padding-h);
  padding-right: var(--padding-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  gap: 3rem;
  max-width: var(--max-w1);
  position: relative;
}

@media (max-width: 768px) {
  .section-content {
    padding-left: var(--padding-hm);
    padding-right: var(--padding-hm);
  }
}

.legal-info h3 {
  margin-bottom: 1rem;
  margin-top: 6rem;
}

.legal-info li,
p {
  color: var(--text-muted);
}



/*--------BUTTONS--------*/

.get-button {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: none;
  padding: 0 1.5rem;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
  font-size: 1rem;
  background: var(--primary);
  color: var(--bg);
  height: 56px;
  position: relative;
  overflow: hidden;
  width: fit-content;
  transition: var(--transition-f);
  text-decoration: none;
}

.get-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 60%;
  height: 200%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 3s ease-in-out infinite;
  pointer-events: none;
}

.get-button:hover {
  background-color: hsl(83, 100%, 65%);
}

.get-button:active {
  background-color: hsl(83, 100%, 40%);
}

@keyframes shine {
  0% {
    left: -75%;
  }

  55% {
    left: 125%;
  }

  100% {
    left: 125%;
  }
}

.get-button-nav {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: none;
  padding: 0 1.25rem;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
  font-size: 1rem;
  height: 48px;
  position: relative;
  overflow: hidden;
  width: fit-content;
  transition: var(--transition-f);
  text-decoration: none;
  background: none;
  color: var(--primary);
  border: solid 1px var(--primary);
}

.button-arrow {
  width: 1.25rem;
  will-change: transform;
}

.get-button:hover .button-arrow {
  animation: arrow-dash-in 0.4s cubic-bezier(.36, .2, .07, 1);
}

.get-button:not(:hover) .button-arrow {
  animation: arrow-dash-out 0.4s cubic-bezier(.36, .2, .07, 1) forwards;
}

.get-button-nav:hover .button-arrow {
  animation: arrow-dash-in 0.4s cubic-bezier(.36, .2, .07, 1);
}

.get-button-nav:not(:hover) .button-arrow {
  animation: arrow-dash-out 0.4s cubic-bezier(.36, .2, .07, 1) forwards;
}

@keyframes arrow-dash-in {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(.75rem, -.75rem) scale(0.5);
    opacity: 0;
  }

  51% {
    transform: translate(-.75rem, .75rem) scale(0.5);
    opacity: 0;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes arrow-dash-out {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-10px, 10px) scale(0.5);
    opacity: 0;
  }

  51% {
    transform: translate(10px, -10px) scale(0.5);
    opacity: 0;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

/*--------NAV--------*/

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: solid .5px var(--border-muted);
  backdrop-filter: blur(32px);
  z-index: 9999;
  height: 70px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: var(--padding-h);
  padding-right: var(--padding-h);
}

.nav-wrapper {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w1);

}

.left-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-line {
  background: var(--border-light);
  width: .5px;
  height: 20px;
}

.nav-link {
  font-size: 1rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition-f);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--text-muted);
}

.nav-logo {
  height: 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition-f);
}

/* Animate to X when open */
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  width: 100%;
  padding: 2rem 0 1.5rem;
}

.mobile-menu.open {
  display: flex;
}

@media (max-width: 768px) {

  .nav-wrapper {
    min-height: 70px;
  }

  .left-nav .nav-link,
  .left-nav .nav-line,
  .nav-wrapper>.get-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }

  .nav {
    background: hsla(0, 0%, 0%, .2);
  }
}





/*--------MAIN-HERO--------*/

.hero {
  text-align: center;
  padding-top: 160px;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}



.hero-content {
  padding-left: var(--padding-h);
  padding-right: var(--padding-h);
  max-width: var(--max-w3);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-content {
    padding-left: var(--padding-hm);
    padding-right: var(--padding-hm);
  }
}

.hero-subheading {
  color: var(--text-muted);
  max-width: var(--max-w2);
  line-height: 1.4;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .hero-subheading {
    font-size: 1.125rem;
  }
}



/*--------LAUREL BANNER--------*/

.laurel-banner {
  display: flex;
  align-items: center;
  cursor: default;
  margin-bottom: 16px;
}

.laurel-text {
  color: var(--gray-90);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  transition: color var(--transition-s);
}

.laurel-banner:hover .laurel-text {
  color: var(--text);
}

.laurel-text-top {
  font-size: .875rem;
  font-weight: 500;
}


.laurel-text-bottom {
  font-size: 1.125rem;
  font-weight: 500;
}

.laurel {
  transition: transform var(--transition-s);
}

.laurel path {
  transition: fill var(--transition-s);
  fill: var(--primary);
}

.laurel-banner:hover .laurel path {
  fill: var(--primary);
}

.laurel-banner:hover .laurel-left {
  transform: scale(1.05) translateX(-4px);
}

.laurel-banner:hover .laurel-right {
  transform: scale(1.05) translateX(4px);
}

/*--------MAC-WINDOW--------*/

.mac-window-border {
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(0, 0%, 10%);
  border: solid 1px hsl(0, 0%, 24%);
  padding: 5px;
  border-radius: 48px;
  margin-top: 40px;
}

.mac-window-glow {
  position: relative;
  z-index: 0;
}

.mac-window {
  border-radius: 44px;
  border: solid 1px hsl(0, 0%, 24%);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1920 / 1080;
}

.mac-window-nav {
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  height: 54px;
  background: var(--bg-light);
}

.mac-window-video {
  width: 100%;
  display: block;
  background: black;
}

#home-video {
  scroll-margin-block: calc(50vh - 250px);
}

/*REVIEWS*/

#testimonials .section-content {
  max-width: 100vw;
  padding-left: 0;
  padding-right: 0;
  align-items: normal;
}

#testimonials .section-heading {
  padding-left: var(--padding-hm);
  padding-right: var(--padding-hm);
}

.review-tracks {
  position: relative;
  overflow: hidden;
}

.review-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: slide-left 120s linear infinite;
  margin-bottom: 32px;
}

.review-track.right {
  animation-direction: reverse;
}

@keyframes slide-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.review-card {
  flex: 0 0 auto;
  background: var(--bg);
  width: 340px;
  margin-right: 2rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--depth-s);
  transition: var(--transition-m);
  cursor: default;
}

.review-card:hover {
  background: hsl(0, 0%, 8%);
  scale: 0.98;
}

.review-head {
  color: var(--text-muted);
  height: 260px;
  padding: 2rem 2rem 0rem 2rem;
}

.review-heading {
  color: var(--text);
  margin-bottom: .875rem;
  font-weight: 400;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-description {
  font-size: 1.125rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-footer {
  border-top: solid 1px var(--bg-light);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem;
  gap: 1rem;
  transition: var(--transition-m);
}

.review-card:hover .review-footer {
  border-top: solid 1px hsl(0, 0%, 13%);
}

.review-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  object-fit: cover;
  background: black;
}


.review-username {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text);
}

.review-stars {
  height: 1rem;
}


.review-tags {
  display: flex;
  gap: .75rem;
  flex-wrap: nowrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: .4rem .75rem;
  border-radius: 12px;
  background: var(--bg-light);
  color: var(--gray-80);
  font-size: .875rem;
  text-wrap: nowrap;
  transition: var(--transition-m);
}

.review-card:hover .tag {
  background: hsl(0, 0%, 13%);
}

.tag-icon {
  height: 1rem;
  width: 1rem;
}




/* FAQ */

.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  row-gap: 0;
}

@media (max-width: 1024px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
  transition: var(--transition-f);
  margin-bottom: 1rem;
  box-shadow: var(--highlight);
}


.faq-item:hover {
  background: var(--bg-hover);
}

.faq-trigger {
  width: 100%;
  border: none;
  outline: none;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  background: none;
  gap: 1rem;
}

.faq-title {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 400;
  color: var(--text);
  font-family: var(--font-sans);
}

.faq-icon {
  flex-shrink: 0;
  width: 2rem;
  stroke: var(--text);
  stroke-width: 1.5px;
  fill: none;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: none;
}

.faq-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
}


.faq-item.active .faq-icon {
  transform: rotate(180deg);
}




/* WHY CHOOSE HYPERTRADE */

.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg);
  padding: 2rem;
  border-radius: 32px;
  box-shadow: var(--depth);
  transition: background-color var(--transition-s), transform var(--transition-s), box-shadow var(--transition-s);
  cursor: default;
}

@media (max-width: 768px) {
  .feature-card {
    padding: 1.5rem;
  }
}

.feature-card:hover {
  background: var(--bg-hover);
  transform: translateY(-8px);
  box-shadow: var(--depth-l);
}



.feature-title {
  margin-bottom: .75rem;
  display: block;
}

.feature-icon-wrap {
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 16px;
  box-shadow: var(--depth-s);
  transition: var(--transition-s);
  flex-shrink: 0;
}

.feature-card:hover .feature-icon-wrap {
  background: hsl(82, 31%, 12%);
}

.feature-icon {
  width: 1.5rem;
  transition: var(--transition-s);
}

.feature-card:hover .feature-icon {
  filter: drop-shadow(0 0 8px var(--primary));
}

/* CHECKOUT */

#checkout .section-content {
  max-width: 1200px;
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-self: stretch;
}

@media (max-width: 1024px) {
  .plans {
    grid-template-columns: 1fr;
  }
}

.plan {
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--depth);
}

.plan::after {
  content: '';
  position: absolute;
  border-radius: 32px;
  inset: 0;
  box-shadow: var(--highlight);
  pointer-events: none;
}

.plan-head {
  background: var(--div-gradient);
  padding: 2rem 2rem 3rem 2rem;
}

.plan-name-and-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;

}

.plan-name {
  font-weight: 400;
  line-height: 1.125;
}

.plan-tag {
  text-wrap: nowrap;
  color: var(--primary);
  font-size: .75rem;
  font-weight: 600;
  padding: .4375rem .5rem .375rem .5rem;
  border: solid 1.5px var(--primary);
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
}

.plan-meta {
  display: flex;
  gap: .75rem;
  font-size: 1.125rem;
  font-weight: 400;
}

.price-discount {
  color: var(--primary);
}

.original-price {
  text-decoration: line-through;
}

.plan-price {
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 400;
  margin: .75rem 0;
}

.price-period {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
}

.plan-note {
  color: var(--text-muted);
  font-size: 1.125rem;
  font-weight: 400;
}

.plan-body {
  background: var(--div-gradient);
  padding: 2rem;
  border-top: solid .5px var(--border-muted);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.whats-included {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: medium;
  margin-bottom: 1.25rem;
}

.plan-features {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  gap: .75rem;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.plan-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 2.5rem;
  width: 2.5rem;
  background: var(--bg-light);
  box-shadow: var(--highlight-s);
  border-radius: 10px;
}

.plan-icon {
  height: 1.25rem;
  width: 1.25rem;
}

.plan-feature-text {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 400;
}

.plan-button {
  font-size: 1rem;
  font-weight: 400;
  height: 3.5rem;
  border-radius: 16px;
  border: none;
  width: 100%;
  color: var(--text);
  box-shadow: var(--depth-button);
  margin-top: auto;
  cursor: pointer;
  background: var(--gray-20);
  transition: var(--transition-f);
}

.plan-button:hover {
  background: var(--gray-30);
}

.plan-button:active {
  background: var(--gray-40)
}

/* YEARLY PLAN */

#yearly .plan-tag {
  opacity: 1;
  pointer-events: all;
}

/* EXCHANGE BAR */

.bar-exchanges {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  background: var(--bg-dark);
  border-top: var(--border-muted) 0.5px solid;
  border-bottom: var(--border-muted) 0.5px solid;
  max-width: 100%;
  width: 100%;
}

.bar-exchange-rail {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100px;
  will-change: transform;
  animation: slide-left 30s linear infinite;
  width: fit-content;
}

.bar-exchange {
  margin: 0 2rem;
  height: 30px;
}

/* MONEY-BACK */

.check-feature {
  display: flex;
  gap: .75rem;
  align-items: center;
}

.check-feature p {
  color: white;
  font-size: 1.125rem;
  line-height: 1.4;
}

.check-icon {
  width: 1.25rem;
}

.shield-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  background: hsl(0, 0%, 6%);
  border-radius: 24px;
  box-shadow: var(--highlight-sn);
  margin-bottom: 1rem;
  transition: var(--transition-m);
}


.big-shield {
  width: 64px;
  filter: drop-shadow(0 0 16px hsl(82, 95%, 50%, .6));
  transition: var(--transition-m);
}




















/*BIG CARD */

@keyframes card-shine {
  0% {
    transform: translateX(-120%);
  }

  35% {
    transform: translateX(120%);
  }

  35.01% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(-120%);
  }
}

.big-card {
  display: flex;
  gap: 32px;
  background-color: var(--bg);
  padding: 20px 0px 20px 20px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  align-self: stretch;
  border: solid 1px hsl(0, 0%, 16%);
}

.big-card::after {
  content: '';
  top: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  animation: card-shine 8s infinite;
  background: linear-gradient(105deg,
      transparent 35%,
      rgba(255, 255, 255, 0.03) 40%,
      rgba(255, 255, 255, 0.07) 50%,
      rgba(255, 255, 255, 0.03) 60%,
      transparent 65%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .big-card {
    flex-direction: column;
    padding: 20px;
  }
}

.big-card-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-right: 48px;
  flex: 2;
  z-index: 1;
}

@media (max-width: 768px) {
  .big-card-info {
    width: auto;
    padding: 16px;
  }
}

.slideshow {
  position: relative;
  flex: 3;
  aspect-ratio: 13 / 9;
  border-radius: 24px;
  overflow: hidden;
  background-color: #141414;
  border: solid 1px hsl(0, 0%, 14%);
}

@media (max-width: 768px) {
  .slideshow {
    width: 100%;
  }
}

.slideshow img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s;
}

.big-card .get-button {
  margin-top: 16px;
}




/* CARDS */

.cards {
  display: flex;
  gap: 32px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.card {
  box-sizing: border-box;
  flex: 0 0 345px;
  height: 490px;
  background: radial-gradient(108.55% 50% at 50% 50%, hsl(0, 0%, 10%) 0%, hsl(0, 0%, 6%) 100%);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0.5px 2px 0 hsla(0, 0%, 39%, 0.5);
  z-index: 2;
  border-radius: 20px;
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(108.55% 50% at 50% 50%, hsl(0, 0%, 9%) 0%, hsl(0, 0%, 5%) 100%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-m)
}

.card:hover::after {
  opacity: 1;
}


.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1;
}

.card-icon-outer {
  background: linear-gradient(135deg, #292929, #1A1A1A);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: var(--depth);
  flex-shrink: 0;
}

.card-icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: solid 1px var(--primary);
  border-radius: 10px;
}

.card-icon {
  width: 22px;
}

.card-title {
  color: var(--text);
}

.card-description {
  font-size: 1rem;
  z-index: 1;
}

.line-h-cards {
  width: 100%;
  height: 1px;
  background: hsla(0, 0%, 18%, 0.5);
  z-index: 1;
}

.card-img {
  position: absolute;
  z-index: 1;
  transition: var(--transition-m);
}

/* CARD TILES */

.card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: auto;
  z-index: 1;
}

.grid-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}

.grid-tile {
  background: hsl(0, 0%, 12%);
  box-shadow: var(--highlight-sn);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  font-size: 1.25rem;
  transition: var(--transition-s);
}


/* CARD ALERTS */

.alerts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alert {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  background: hsl(0, 0%, 12%);
  box-shadow: var(--highlight);
  border-radius: 12px;
  z-index: 1;
  transition: var(--transition-m);
}

.card:hover .alert-top {
  transform: translateX(-6px);
}

.card:hover .alert-bottom {
  transform: translateX(6px);
}

.alert-left {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 56px;
  height: 100%;
  flex-shrink: 0;
  background: hsl(0, 0%, 21%);
  border-radius: 8px;
  transition: var(--transition-m);
  box-shadow: var(--highlight-sn);
}

.alert-arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-arrow svg {
  width: 20px;
  height: 20px;
}

.alert-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4px 4px 4px 0px;
  flex: 1;
  box-sizing: border-box;
  gap: 0;
  min-width: 0;
}

.alert-right-top {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 0px;
  width: 100%;
  height: 18px;
  flex-shrink: 0;
}

.alert-close {
  width: 18px;
  height: 18px;
}

.alert-close svg {
  width: 18px;
  height: 18px;
}

.alert-right-middle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.alert-title-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  height: 18px;
}

.alert-logo {
  width: 18px;
  height: 18px;
  border-radius: 9999px;
}

.alert-message {
  font-size: 14px;
  line-height: 16px;
}

.alert-descriptions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: var(--transition-m);
}

.alert-description-top {
  width: 140px;
  height: 8px;
  background: hsl(0, 0%, 24%);
  border-radius: 3px;
  transition: var(--transition-m);
}

.alert-description-bottom {
  width: 70px;
  height: 8px;
  background: #3D3D3D;
  border-radius: 3px;
  transition: var(--transition-m);
}

.alert-right-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 0px;
  gap: 8px;
  width: 100%;
  height: 18px;
  flex-shrink: 0;
}

.alert-time {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: #999999;
}

/* TIMEFRAME-TILES */

.timeframe-body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: auto;
  z-index: 1;
  margin-bottom: -40px;
}

.timeframe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}

.timeframe-tile {
  background: hsla(0, 0%, 14%);
  box-shadow: var(--highlight-sn);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 1.25rem;
  transition: var(--transition-s);
}

.card:hover .timeframe-tile {
  border-radius: 28px;
  background: hsla(0, 0%, 12%);
}

.timeframe-tradingview-tile {
  background: hsla(0, 0%, 22%, .4);
  height: 148px;
  width: 148px;
  border-radius: 32px;
  box-shadow: var(--highlight-sn);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-s);
  z-index: 2;
}

.card:hover .timeframe-tradingview-tile {
  background: hsla(0, 0%, 26%, .5);
  height: 160px;
  width: 160px;
}

.timeframe-tradingview-logo {
  height: 40px;
  transition: var(--transition-s);
}

.card:hover .timeframe-tradingview-logo {
  height: 44px;
}


.card:hover .browser-grid .grid-tile {
  background: hsl(0, 0%, 11%);
}

.browser-grid {
  margin-bottom: -100px;
  transition: var(--transition-s);
}

.card:hover .browser-grid {
  margin-bottom: -95px;
  scale: 0.98;
}

.browser-grid .grid-tile {
  height: 100px;
  width: 100px;
  border-radius: 28px;
}

.browser-logo {
  height: 65px;
}

.asset-grid {
  margin-bottom: -40px;
}

.card:hover .asset-grid .grid-tile {
  border-radius: 32px;
}

.tile-asset-logo {
  height: 50px;
}

.instant-setup-image {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 310px;
  z-index: 1;
  transition: var(--transition-m);
}

.card:hover .instant-setup-image {
  transform: translate(-8px, -8px);
  filter: brightness(1.1);
}

.fully-customizable-image {
  position: absolute;
  right: -8px;
  bottom: -8px;
  height: 260px;
  transition: var(--transition-m);
  z-index: 1;
}

.card:hover .fully-customizable-image {
  transform: translate(-8px, -8px);
  filter: brightness(1.1);
}



















.cards-section-content {
  padding-right: 0;
  padding-left: var(--padding-h);
}

/* ── Outer wrapper: positions the fade mask ── */
.cards-slider-outer {
  position: relative;
  width: 100%;
}

/* ── Scrollable rail ── */
.cards-slider {
  display: flex;
  gap: 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overflow-x: auto;
  /* extra right padding so last card can scroll fully into view */
  padding-right: 80px;
  padding-bottom: 4px;
  /* prevent box-shadow clip */
}

.cards-slider::-webkit-scrollbar {
  display: none;
}

.cards-slider .card {
  scroll-snap-align: start;
  flex-shrink: 0;
}



/* ── Arrow row ── */
.cards-controls {
  display: flex;
  gap: 10px;
  align-self: flex-end;
  /* left-align under the first card */
  margin-top: -4px;
  padding-right: 1rem;
}

.cards-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: none;
  background: var(--bg-light);
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--depth-s);
  transition: var(--transition-f)
}

.cards-arrow svg {
  width: 20px;
  height: 20px;
}

.cards-arrow:hover {
  background: var(--bg-hover);
  border-color: var(--border);
}

.cards-arrow:active {
  transform: scale(0.95);
}

.cards-arrow:disabled {
  opacity: 0.28;
  cursor: default;
  transform: none;
  pointer-events: none;
}


.section--overflow {
  overflow: visible;
}




/* FOOTER */

.footer {
  max-width: 100vw;
  overflow: hidden;
  border-top: solid 1px var(--gray-10);
  border-bottom: solid 1px var(--gray-10);
  margin-top: auto;
}

.footer-content {
  max-width: var(--max-w1);
  padding-right: var(--padding-h);
  padding-left: var(--padding-h);
  padding-top: 64px;
  padding-bottom: 64px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-link {
  color: var(--text-muted);
  font-size: .875rem;
  cursor: pointer;
  width: fit-content;
  transition: color var(--transition-f);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--text);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


/* DISCLAIMER */

.disclaimer {
  padding-left: var(--padding-h);
  padding-right: var(--padding-h);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.disclaimer-text {
  margin: 0 auto;
  font-size: .75rem;
  color: var(--gray-40);
  max-width: var(--max-w1);
}

/* PRIVACY POLICY */

#privacy-policy h3 {
  margin-top: 32px;
}