* { box-sizing: border-box; }
html, body, #app { height: 100%; }
body {
  margin: 0;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  background: #030303;
  color: #fff;
}

.page { width: 100%; min-height: 100%; position: relative; overflow-x: hidden; }
.site-main { padding-top: 125px; }

.site-header {
  position: fixed;
  top:0; left:0; width:100%; height:125px;
  display:flex; align-items:center; justify-content:space-between;
  padding: 0 178px;
  border-bottom:1px solid #8c8c8c;
  background:#030303; z-index:50;
}
.logo {
  width:154px; height:40px;
  background:url("/untitled-design--42--1.png") no-repeat center / contain;
}

.btn {
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px; white-space:nowrap; border:0; outline:0; cursor:pointer;
  height:62px; padding:18px 32px; border-radius:41px;
  font-weight:500; font-size:20px; color:#000;
  background: linear-gradient(180deg, rgba(34,255,242,1) 0%, rgba(125,76,255,1) 100%);
  transition: opacity .25s ease;
}
.btn:hover { opacity:.9; }
.btn--destructive { background:#d32f2f; color:#fff; }
.btn--outline { background:transparent; border:1px solid #444; color:#fff; }
.btn--secondary { background:#262626; color:#fff; }
.btn--ghost { background:transparent; color:#fff; }
.btn--link { background:transparent; color:#00e5ff; text-decoration:underline; }
.btn--sm { height:32px; padding:6px 12px; font-size:12px; }
.btn--lg { height:44px; padding:10px 24px; font-size:16px; }
.btn--icon { width:36px; height:36px; padding:0; }

.card {
  border:1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
  backdrop-filter: blur(30px);
}
.card__header { padding: 24px; }
.card__title { font-weight:600; }
.card__description { font-size:14px; color: rgba(255,255,255,.75); }
.card__content { padding: 24px; }
.card__footer { padding: 24px; }

.badge {
  display:inline-flex; align-items:center; border-radius:12px;
  border:1px solid transparent; padding:8px 14px; font-size:14px; font-weight:500;
}
.badge--default { background:#0ea5e9; color:#001018; }
.badge--secondary { background:#262626; color:#fff; }
.badge--destructive { background:#b00020; color:#fff; }
.badge--outline { background:transparent; border-color: rgba(255,255,255,.4); color:#fff; }
.badge--pill { border-radius:50px; }
.badge__label { font-family: "Inter", Helvetica, Arial, sans-serif; font-weight: 300; }

.hero { position:relative; padding:80px 0; }
.hero__images { position:absolute; inset:0; pointer-events:none; }
.hero__img { position:absolute; object-fit:contain; }
.hero__img--top-right { top:0; right:0; width:575px; height:456px; }
.hero__img--top-left { top:0; left:0; width:100%; max-width:1391px; height:auto; }

.hero__content {
  position:relative; z-index:1;
  width: min(1200px, 100% - 32px); margin: 0 auto;
  min-height: 600px; display:flex; flex-direction:column; justify-content:center;
}
.hero__content-wrap {
  margin-left: 50%;
}

@media (max-width: 768px) {
  .hero__content-wrap { margin-left: 0; }
}
.hero__pill { font-size:20px; line-height:32px; margin-bottom:12px; }
.hero__title { font-size:55px; line-height:70px; font-weight:500; margin: 12px 0 16px; max-width: 787px; }
.hero__subtitle { font-size:18px; line-height:30px; color:#fff; max-width: 787px; margin-bottom:24px; }

.hero__features {
  margin-top:40px; display:flex; align-items:center; justify-content:center;
  gap:32px; width:100%; max-width: 960px;
}
.hero-feature { display:flex; flex-direction:column; align-items:center; gap:12px; }
.hero-feature__dot { width:48px; height:48px; border-radius:50%; background:#22d3ee; display:flex; align-items:center; justify-content:center; }
.hero-feature__dot-inner { width:24px; height:24px; border-radius:50%; background:#67e8f9; }
.hero-feature__label { font-size:14px; text-align:center; }

.metatrader {
  display:flex; justify-content:center; gap:41px; padding:40px 16px; flex-wrap:wrap;
}
.feature-card { width:345px; height:429px; position:relative; }
.feature-card__content { height:100%; padding:0; position:relative; }
.feature-card__icon { width:67px; height:67px; position:absolute; top:39px; left:43px; }
.feature-card__title { position:absolute; top:150px; left:43px; font-size:24px; line-height:30px; }
.feature-card__desc { position:absolute; top:206px; left:43px; width:259px; font-size:16px; line-height:30px; color: rgba(255,255,255,.63); }
.feature-card__link {
  position:absolute; top:357px; left:43px; background:transparent; border:0; color:#fff;
  font-size:16px; line-height:30px; cursor:pointer; padding:0;
}
.feature-card__link:hover { opacity:.8; }

.features { position:relative; width:100%; padding:40px 16px; }
.features__grid { display:flex; flex-direction:column; gap:32px; max-width:1200px; margin:0 auto; }
@media (min-width: 1024px) {
  .features__grid { flex-direction:row; gap:64px; }
}
@media (max-width: 768px) {
  .features__grid { flex-direction: column-reverse; }
}
.features__col { flex:1; display:flex; flex-direction:column; }
.features__title { font-size:64px; line-height:91px; font-weight:500; margin: 0 0 24px; }
.features__text { font-size:16px; line-height:30px; color: rgba(255,255,255,.63); max-width:520px; margin: 0 0 32px; }

.features__stats { display:flex; gap:32px; margin-bottom:32px; }
.features__stat { display:flex; flex-direction:column; align-items:flex-start; gap:12px; }
.features__stat-value { font-size:32px; line-height:37px; }
.features__stat-label { font-size:16px; line-height:24px; color: rgba(255,255,255,.75); }

.features__badges { display:flex; align-items:center; gap:40px; margin-bottom:24px; }

.features__phone { width:175px; height:308px; border-radius:30px; object-fit:cover; }

.features__visual { flex:1; position:relative; }

.features__visual-img { width:100%; max-width:1045px; height:auto; object-fit:cover; position: absolute; right: -200px; }
.features__overlay {
  position:absolute; top:0; left:0; display:flex; flex-direction:column; gap:104px; padding:32px;
}
.features__kpi { position:relative; }
.features__kpi-value { font-size:32px; line-height:37px; margin-bottom:8px; }
.features__kpi-label { font-size:16px; line-height:37px; color: rgba(255,255,255,.75); }
.features__kpi-circle { position:absolute; top:29px; left:150px; width:312px; height:104px; }

.features__card { width:321px; background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:30px; }
.features__card-content { padding:36px; }
.features__card-index { color: rgba(255,255,255,.63); margin-bottom:20px; }
.features__card-title { font-size:24px; line-height:35px; margin: 0 0 16px; }
.features__card-text { font-size:16px; line-height:30px; color: rgba(255,255,255,.63); }
.features__flex { display: flex;
    align-items: center;
    gap: 64px;
    flex-direction: row-reverse; }

@media (max-width: 768px) {
  .features__visual { 
    height: 545px;
    min-height: 545px; 
  }
  .features__visual-img {
    right: -100px;
  }
  .features__kpi-circle {
    left: 0px;
  }
  .features__flex {
    margin-top:30px;
    flex-direction: column-reverse;
  }
  .features__overlay {
    padding: 32px 5px;
  }
  .features__header {
    margin: 0 20px;
  }
}

.site-footer { width:100%; display:flex; flex-direction:column; background:transparent; }
.divider-wrap { width:100%; padding: 0 193px; }
.divider { width:100%; height:1px; display:block; }
.footer-cta {
  display:flex; flex-direction:column; align-items:center; gap: 32px; padding:116px 16px;
}
.footer-cta__title { font-size:18px; line-height:30px; }
.footer-cta__icons { height:53px; width:128px; object-fit:contain; }

@media (max-width: 1200px) {
  .site-header { padding: 0 24px; }
}
@media (max-width: 768px) {
  .footer-cta {
    padding: 26px 16px;
  }
  .hero__title { font-size: 36px; line-height: 46px; }
  .btn { height:56px; font-size:18px; }
  .features__title { font-size:42px; line-height:56px; }
}
.btn {
  background: url('./btn-bg.png') no-repeat center / cover;
}