@charset "UTF-8";
/* Dark stats / CTA banner — matches Figma node 15463:12103 */
.dark_stats {
  position: relative;
  overflow: hidden;
  background: #14141a;
  padding: 120px 0;
  /* Pattern underlay — an <img> element (not a CSS background), absolute,
     fixed width, clipped by the section's overflow:hidden. */
}
.dark_stats__pattern {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2000px;
  max-width: none;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
.dark_stats .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.dark_stats__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.dark_stats__title {
  margin: 0;
  font-family: "Plus Jakarta Sans";
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
  color: #f7f7f8;
}
.dark_stats__title * {
  color: inherit;
}
.dark_stats__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #d0d0d8;
}
.dark_stats__stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.dark_stats__stat {
  width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dark_stats__value {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #f7f7f8;
}
.dark_stats__label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #d0d0d8;
}
.dark_stats__vr {
  flex: 0 0 auto;
  width: 1px;
  border-radius: 4px;
  background: rgba(231, 231, 234, 0.2);
}
.dark_stats__bottom {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.dark_stats__divider {
  width: 100%;
  height: 1px;
  border-radius: 4px;
  background: rgba(231, 231, 234, 0.2);
}
.dark_stats__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.dark_stats__cta-text {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #f7f7f8;
}
.dark_stats__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dark_stats__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 48px;
  padding: 0 24px 2px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.dark_stats__btn--primary {
  background: #614efa;
  color: #ffffff;
}
.dark_stats__btn--primary:hover {
  background: #5544dc;
}
.dark_stats__btn--outline {
  border: 1px solid #ffffff;
  color: #f7f7f8;
}
.dark_stats__btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1100px) {
  .dark_stats {
    padding: 80px 0;
  }
  .dark_stats__title {
    font-size: 36px;
    line-height: 44px;
  }
  .dark_stats__stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    width: 100%;
  }
  .dark_stats__stat {
    width: calc(50% - 12px);
  }
  .dark_stats__vr {
    display: none;
  }
  .dark_stats__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Mobile — 2x2 stat grid with cross dividers (Figma 15721:5414), footer
   stacked with full-width buttons. Placed after the 1100 block so it wins. */
@media (max-width: 767px) {
  .dark_stats {
    padding: 64px 0;
    /* Radial-gradient background per Figma 15721:5417 (light spot top-centre). */
    background: radial-gradient(130% 70% at 50% 16%, #242729 0%, #14141a 65%);
  }
  .dark_stats__pattern {
    display: none;
  }
  .dark_stats__title {
    font-size: 30px;
    line-height: 38px;
  }
  .dark_stats__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 100%;
  }
  .dark_stats__vr {
    display: none;
  }
  .dark_stats__stat {
    width: auto;
  }
  .dark_stats__value {
    font-size: 28px;
    line-height: 36px;
  }
  .dark_stats__label {
    font-size: 12px;
    line-height: 16px;
  }
  .dark_stats {
    /* Vertical divider centred between the columns: 16px gap each side
       (left column pads right, right column pads left + draws the border). */
  }
  .dark_stats__stat:nth-of-type(2n - 1) {
    padding-right: 16px;
  }
  .dark_stats__stat:nth-of-type(2n) {
    padding-left: 16px;
    border-left: 1px solid rgba(231, 231, 234, 0.2);
  }
  .dark_stats {
    /* Horizontal divider centred between the rows: 16px gap each side
       (top row pads bottom, bottom row pads top + draws the border). */
  }
  .dark_stats__stat:nth-of-type(-n + 2) {
    padding-bottom: 16px;
  }
  .dark_stats__stat:nth-of-type(n + 3) {
    padding-top: 16px;
    border-top: 1px solid rgba(231, 231, 234, 0.2);
  }
  .dark_stats__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .dark_stats__ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .dark_stats__btn {
    width: 100%;
  }
}
/* Tablet only — 2x2 stat grid with cross dividers + horizontal footer
   (Figma 15648:9042). Bounded band so mobile (<=767) and desktop (>1281)
   are untouched; placed after the 1100/575 blocks so it wins in 768-1100. */
@media screen and (min-width: 768px) and (max-width: 1281px) {
  .dark_stats__title {
    font-size: 36px;
    line-height: 44px;
  }
  .dark_stats__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 696px;
    margin: 0 auto;
  }
  .dark_stats__vr {
    display: none;
  }
  .dark_stats__stat {
    width: auto;
    padding: 20px 40px;
  }
  .dark_stats {
    /* vertical divider between the two columns */
  }
  .dark_stats__stat:nth-of-type(2n) {
    border-left: 1px solid rgba(231, 231, 234, 0.2);
  }
  .dark_stats {
    /* horizontal divider between the two rows */
  }
  .dark_stats__stat:nth-of-type(n + 3) {
    border-top: 1px solid rgba(231, 231, 234, 0.2);
  }
  .dark_stats__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .dark_stats__ctas {
    width: auto;
    flex-direction: row;
    align-items: center;
  }
}
