@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-var-latin.woff2') format('woff2'),
       url('../fonts/inter-var-latin.woff') format('woff'),
       url('../fonts/inter-var-latin.svg#Inter-Regular') format('svg');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600-latin.woff2') format('woff2'),
       url('../fonts/poppins-600-latin.woff') format('woff'),
       url('../fonts/poppins-600-latin.svg#Poppins-SemiBold') format('svg');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700-latin.woff2') format('woff2'),
       url('../fonts/poppins-700-latin.woff') format('woff'),
       url('../fonts/poppins-700-latin.svg#Poppins-Bold') format('svg');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/poppins-800-latin.woff2') format('woff2'),
       url('../fonts/poppins-800-latin.woff') format('woff'),
       url('../fonts/poppins-800-latin.svg#Poppins-ExtraBold') format('svg');
}

#advanced-technology .at-icons-row {
  grid-template-columns: repeat(5, 1fr);
}

.sd-footer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.sd-footer-logo-wrap .sd-footer-logo {
  margin: 0;
}

.main-nav a.active::after {
  background: linear-gradient(90deg, var(--blue-1), var(--gold-1)) !important;
}

.sd-stat-copy strong {
  font-size: 24px !important;
}

.sd-stat-copy strong span {
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--text-hi);
  font-size: 24px;
}

.sd-stat-copy span {
  font-size: 11.5px;
  color: var(--text-dim);
  /* white-space: nowrap; */
}

.sd-feature-item h4 {
  white-space: normal;
}

@media (min-width: 576px) and (max-width: 1200px) {
  .sd-features-row {
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .sd-feature-item {
    flex: 0 0 auto !important;
    width: 260px;
    scroll-snap-align: start;
    border-bottom: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
  .sd-feature-item:last-child {
    border-right: none !important;
  }
}
.btn {
  border-width: 0.5px !important;
  border-radius: 14px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  padding: 14px 26px !important;
}

@media (max-width: 420px) {
  .header-actions .btn-ghost {
    padding: 0 !important;
  }
}

@media (max-width: 767px) {
  .header-actions {
    gap: 3px;
  }
}

@media (max-width: 992px) {
  .momo a.brand {
    padding: 0;
    margin-left: -6px;
  }
}

/* ---------- language switcher ---------- */
.lang-switch {
  position: relative;
  flex: 0 0 auto;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(126, 200, 255, 0.25);
  background: rgba(126, 200, 255, 0.05);
  color: var(--text-hi, #f3f6fc);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.lang-toggle:hover {
  border-color: rgba(126, 200, 255, 0.6);
  background: rgba(126, 200, 255, 0.12);
}

.lang-toggle svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(126, 200, 255, 0.2);
  background: rgba(8, 13, 26, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 60;
}

.lang-menu.is-open {
  display: flex;
}

.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--text-mid, #b6c2d9);
  font-size: 13.5px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-menu button:hover {
  background: rgba(126, 200, 255, 0.12);
  color: var(--text-hi, #f3f6fc);
}

.lang-menu button.is-active {
  color: var(--gold-1);
  background: rgba(255, 197, 92, 0.08);
}

@media (max-width: 767px) {
  .lang-toggle span {
    display: none;
  }
  .lang-toggle {
    width: 38px;
    padding: 0;
    justify-content: center;
  }
  .main-nav {
    gap: 0px;
  }
  .header-actions .lang-switch {
    order: 2;
  }
  .header-actions .btn-ghost {
    order: 1;
  }
  .header-actions .nav-toggle {
    order: 3;
  }
  .brand .brand-name-suffix {
    display: block !important;
    font-size: 11px !important;
    letter-spacing: 3px !important;
    margin-left: 0px;
    margin-top: 2px !important;
  }
  .footer-grid .brand-name-suffix {
    font-size: 11px !important;
    display: block !important;
    letter-spacing: 5px !important;
    margin-left: 0px;
    margin-top: 4px !important;
  }
}
.btn-primary,
.cta-banner-ctas .btn-primary,
.sd-footer-ctas .btn-primary,
.ps-copy .ps-cta.btn-primary {
  background: linear-gradient(135deg, #0b2e82 0%, #1657e0 45%, #3b8bff 100%) !important;
  border-color: rgba(130, 190, 255, 0.55) !important;
  box-shadow: 0 0 0 1px rgba(59, 123, 255, 0.2), 0 0 22px rgba(47, 125, 255, 0.55), 0 10px 26px rgba(6, 14, 40, 0.5) !important;
}

.btn-primary:hover,
.cta-banner-ctas .btn-primary:hover,
.sd-footer-ctas .btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(59, 123, 255, 0.3), 0 0 30px rgba(47, 125, 255, 0.7), 0 10px 26px rgba(6, 14, 40, 0.5) !important;
}

.pd-cta-ctas .btn-primary {
  color: #fff !important;
}
.pd-cta-ctas .btn-primary .pd-cta-btn-ico img {
  filter: brightness(0) invert(1);
}

.btn-outline-gold,
.cta-banner-ctas .btn-outline-gold,
.sd-footer-ctas .btn-outline-gold,
.ps-copy .ps-cta.btn-outline-gold {
  color: var(--gold-2) !important;
  background: linear-gradient(180deg, #090d1a, #05070d) padding-box, linear-gradient(135deg, #fff3d6 0%, #f2b84b 28%, #8a611f 50%, #f2b84b 72%, #fff3d6 100%) border-box !important;
  border-color: transparent !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4) !important;
}

.btn-outline-gold:hover,
.cta-banner-ctas .btn-outline-gold:hover,
.sd-footer-ctas .btn-outline-gold:hover {
  color: #fff !important;
  box-shadow: inset 0 1.5px 0 rgba(255, 224, 130, 0.55), 0 0 0 1px rgba(242, 184, 75, 0.25), 0 0 28px rgba(242, 184, 75, 0.8), 0 0 60px rgba(242, 184, 75, 0.42) !important;
}

.ps-copy .ps-cta.btn {
  justify-content: space-between;
  gap: 8px;
}

.ps-copy .ps-cta.btn svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-weight: 400;
}
.hero h1 .text-gradient {
  font-weight: 400;
}
.hero p.intro a {
  font-weight: 400 !important;
  background: linear-gradient(92deg, var(--blue-1), var(--blue-2)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}
.hero p.intro a.gold {
  color: var(--gold-2) !important;
  border-bottom-color: rgba(255, 197, 92, 0.4) !important;
}
@media (max-width: 576px) {
  .hero {
    padding: 30px 0 40px !important;
  }
}

.hero-divider {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  max-width: 480px !important;
  height: 22px !important;
  margin: 14px 0 28px !important;
}
.hero-divider::before, .hero-divider::after {
  content: none !important;
}
.hero-divider .spark {
  display: block !important;
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  clip-path: none !important;
  animation: none !important;
  filter: drop-shadow(0 0 5px rgba(255, 214, 140, 0.55)) !important;
  background-repeat: no-repeat !important;
  background-image: linear-gradient(180deg, transparent, #fff8e0 42%, #ffd98a 50%, #fff8e0 58%, transparent), linear-gradient(90deg, transparent, #fff8e0 42%, #ffd98a 50%, #fff8e0 58%, transparent), radial-gradient(circle 4px at 32% 50%, #fffdf5 0%, #ffd98a 60%, transparent 100%), linear-gradient(90deg, rgba(126, 200, 255, 0.85) 0%, #eaf6ff 30%, rgba(255, 214, 140, 0.9) 32%, rgba(126, 200, 255, 0.4) 82%, transparent 100%) !important;
  background-size: 2px 100%, 60px 2px, 100% 100%, 100% 2px !important;
  background-position: 32% 50%, 32% 50%, 0 0, 0 50% !important;
}
.hero-divider .spark::before, .hero-divider .spark::after {
  content: none !important;
}

.btn-primary::before,
.btn-primary::after,
.btn-outline-gold::before,
.btn-outline-gold::after {
  content: none !important;
  animation: none !important;
}

@media (max-width: 576px) {
  .ps-copy {
    max-width: 100%;
    padding: 28px 22px;
  }
  .ps-copy h3 {
    font-size: 24px;
  }
  .ps-num {
    font-size: 38px;
  }
  .ps-tagline {
    font-size: 15px;
  }
  .am-feature-row {
    grid-template-columns: 1fr !important;
  }
  .am-feature-card {
    height: auto !important;
  }
  .am-feature-title,
  .am-feature-desc {
    max-width: 100% !important;
  }
  .am-impact-card {
    height: auto !important;
    margin-top: 14px;
  }
  .tech-list li {
    padding: 14px 0px !important;
  }
}
.brand-name-suffix {
  font-weight: 300 !important;
  color: #fff !important;
  font-size: 12px !important;
  letter-spacing: 5px !important;
  /* margin-top: -1px !important; */
  margin-left: 7px;
}

.footer-brand-col .foot-brand {
  margin-bottom: 18px;
  margin-left: -11px;
}

@media (max-width: 767px) {
  .stats-list .stat-block {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    justify-content: flex-start !important;
  }
  .feature-item span.label {
    font-size: 16px !important;
    color: var(--text-mid) !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
  }
  .am-filters-row {
    flex-direction: row !important;
    align-items: flex-start !important;
  }
  .am-filters-label {
    margin-bottom: 8px !important;
  }
  .am-filter-pills {
    flex: 1 1 100% !important;
    width: 100% !important;
  }
  .am-sort {
    margin-left: 0 !important;
    margin-top: 10px !important;
  }
  .product-showcase {
    margin-bottom: 60px !important;
  }
  .product-showcase:last-child {
    margin-bottom: 0px !important;
  }
  #products .tag.tag-orn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    flex-direction: row !important;
  }
  .section {
    padding: 70px 0 0 0 !important;
  }
  .tag.tag-orn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-direction: column !important;
  }
}
.stats-band {
  border-top: none !important;
  border-bottom: none !important;
  background: transparent !important;
  padding: 56px 15px !important;
}
.stats-band .container-x {
  border-radius: 24px !important;
  max-width: 1560px !important;
}
.stats-band .container-x::before {
  padding: 2px !important;
  filter: drop-shadow(0 0 6px rgba(126, 200, 255, 0.9)) drop-shadow(0 0 18px rgba(59, 123, 255, 0.6)) !important;
}
.stats-band .container-x::after {
  height: 3px !important;
  opacity: 1 !important;
  background: radial-gradient(circle 2.5px at 15% 50%, rgba(126, 200, 255, 0.8), transparent 65%), radial-gradient(circle 2px at 32% 50%, rgba(126, 200, 255, 0.55), transparent 65%), radial-gradient(circle 2.5px at 50% 50%, rgba(126, 200, 255, 0.8), transparent 65%), radial-gradient(circle 2px at 68% 50%, rgba(126, 200, 255, 0.55), transparent 65%), radial-gradient(circle 2.5px at 85% 50%, rgba(126, 200, 255, 0.8), transparent 65%), linear-gradient(90deg, transparent 0%, rgba(126, 200, 255, 0.6) 8%, rgba(126, 200, 255, 0.12) 45%, rgba(126, 200, 255, 0.12) 55%, rgba(126, 200, 255, 0.6) 92%, transparent 100%) !important;
}
@media (max-width: 992px) {
  .stats-band .container-x {
    border-radius: 18px !important;
    padding: 30px 15px !important;
  }
}

.stat-num {
  font-size: 18px !important;
}

.stat-cap {
  font-size: 11px !important;
}

.stat-icowrap {
  width: 52px !important;
  height: 52px !important;
}

/* Sign In header button: Bootstrap's .btn:hover resets color to #212529
   on hover, making the label/icon invisible against the dark button. */
.btn-ghost {
  border-radius: 12px !important;
}
.btn-ghost:hover {
  color: #fff !important;
}

@media (max-width: 991.98px) {
  /* .row.gy-5 is a Bootstrap 5 gutter class; this project ships Bootstrap 4.3.1,
     which doesn't recognize it, so stacked product-showcase columns had no gap. */
  .product-showcase .col-lg-3 {
    margin-bottom: 32px !important;
  }
  .ps-copy {
    max-width: 100% !important;
  }
  .am-chat-panel {
    border: none !important;
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }
}
.am-dash-footer {
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.stats-title {
  border-right: none !important;
  padding-right: 0 !important;
}

.stats-title-card {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.stats-title-card strong {
  display: block;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 800;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.stats-title-card span:not(.corner) {
  font-size: 13px;
  color: var(--blue-2);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.pd-cta-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
}

#products .section-head h2,
#technology .section-head h2 {
  white-space: nowrap;
}

#technology .section-head {
  max-width: 900px;
}

.cta-banner-content {
  max-width: 900px;
}

.cta-banner-content h2 {
  white-space: normal;
}

#advanced-technology .at-head {
  max-width: 900px;
}

@media (max-width: 992px) {
  #products .section-head h2,
  #technology .section-head h2 {
    white-space: normal;
  }
}

@media (min-width: 992px) {
  .pricing-hero-img {
    transform: scale(1.3);
  }

  .pd-cta-content h2 {
    white-space: nowrap;
  }
}

html[lang="fil"] #products .section-head h2,
html[lang="fil"] #technology .section-head h2,
html[lang="fil"] .am-dash-footer,
html[lang="fil"] .brand-name-suffix,
html[lang="fil"] .btn,
html[lang="fil"] .signal-badge,
html[lang="fil"] .token-col-price,
html[lang="fil"] .am-pill,
html[lang="fil"] .am-meta,
html[lang="fil"] .am-user,
html[lang="fil"] .app-mock-ticker,
html[lang="fil"] .am-impact-level,
html[lang="fil"] .am-live-pill,
html[lang="fil"] .am-dash-updated,
html[lang="fil"] .am-dash-window-label,
html[lang="fil"] .am-refresh-btn,
html[lang="fil"] .am-search-box span,
html[lang="fil"] .am-showing,
html[lang="fil"] .am-csv-btn,
html[lang="fil"] .am-filters-label,
html[lang="fil"] .am-filter-pills button,
html[lang="fil"] .am-sort,
html[lang="fil"] .am-stat-meta,
html[lang="fil"] .am-session-time,
html[lang="fil"] .am-top-badge,
html[lang="fil"] .am-top-info b,
html[lang="fil"] .am-top-sub,
html[lang="fil"] .am-news-title,
html[lang="fil"] .header-actions .btn-ghost,
html[lang="fil"] .sd-stat-copy span,
html[lang="fil"] .sd-footer-meta-link,
html[lang="fil"] .pd-eyebrow span,
html[lang="th"] #products .section-head h2,
html[lang="th"] #technology .section-head h2,
html[lang="th"] .am-dash-footer,
html[lang="th"] .brand-name-suffix,
html[lang="th"] .btn,
html[lang="th"] .signal-badge,
html[lang="th"] .token-col-price,
html[lang="th"] .am-pill,
html[lang="th"] .am-meta,
html[lang="th"] .am-user,
html[lang="th"] .app-mock-ticker,
html[lang="th"] .am-impact-level,
html[lang="th"] .am-live-pill,
html[lang="th"] .am-dash-updated,
html[lang="th"] .am-dash-window-label,
html[lang="th"] .am-refresh-btn,
html[lang="th"] .am-search-box span,
html[lang="th"] .am-showing,
html[lang="th"] .am-csv-btn,
html[lang="th"] .am-filters-label,
html[lang="th"] .am-filter-pills button,
html[lang="th"] .am-sort,
html[lang="th"] .am-stat-meta,
html[lang="th"] .am-session-time,
html[lang="th"] .am-top-badge,
html[lang="th"] .am-top-info b,
html[lang="th"] .am-top-sub,
html[lang="th"] .am-news-title,
html[lang="th"] .header-actions .btn-ghost,
html[lang="th"] .sd-stat-copy span,
html[lang="th"] .sd-footer-meta-link,
html[lang="th"] .pd-eyebrow span {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.section-head {
  max-width: 100%;
}

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