@charset "UTF-8";
/*
  HeyMeta Custom Styles Fix
  Purpose: load all custom / hm-* styles as a separate file to avoid server/browser cache
  or old style.css versions causing hm-prefixed layouts to lose CSS online.
*/
#eco-system {
  width: 980px;
  height: 560px;
}
/* 外环 */
#eco-system .eco-ring {
  position:absolute;
  inset: 70px 160px;
  border: 2px dashed rgba(0,0,0,.2);
  border-radius: 50%;
}
/* 核心 */
#eco-system .eco-core {
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:260px;
  padding:24px;
  background:#fff;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}
#eco-system .eco-core h4 {
  font-weight:700;
  margin-bottom:8px;
}
/* 外围模块 */
#eco-system .eco-item {
  position:absolute;
  width:260px;
  padding:20px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}
#eco-system .eco-item h5 {
  font-weight:600;
  margin-bottom:6px;
}
#eco-system .eco-item p {
  font-size:14px;
  opacity:.75;
  margin:0;
}
/* 定位 */
#eco-system .eco-top {
  left:50%;
  top:10px;
  transform:translateX(-50%);
}
#eco-system .eco-left {
  left:0;
  top:50%;
  transform:translateY(-50%);
}
#eco-system .eco-right {
  right:0;
  top:50%;
  transform:translateY(-50%);
}
#eco-system .eco-bottom-left {
  left:120px;
  bottom:10px;
}
#eco-system .eco-bottom-right {
  right:120px;
  bottom:10px;
}
/* 移动卡片 */
.eco-card-mobile {
  background:#fff;
  padding:18px;
  border-radius:10px;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}
/* 行情 */
.hot-assets-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.hot-assets-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
.hot-assets-title {
  text-align: center;
  margin-bottom: 45px;
}
.hot-assets-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: #102033;
  margin-bottom: 12px;
}
.hot-assets-title p {
  font-size: 16px;
  color: #7a8ca5;
}
.hot-assets-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 10px 5px 25px;
  scroll-behavior: smooth;
}
.hot-assets-scroll::-webkit-scrollbar {
  height: 6px;
}
.hot-assets-scroll::-webkit-scrollbar-thumb {
  background: #d6e2f3;
  border-radius: 10px;
}
.asset-card {
  min-width: 170px;
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 18px;
  padding: 34px 20px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(30, 84, 160, 0.08);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.asset-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30, 84, 160, 0.14);
}
.asset-logo {
  width: 40px;
  height: 40px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #f5f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.asset-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.asset-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #102033;
  margin: 0 0 6px;
  white-space: nowrap;
}
.asset-card p {
  font-size: 14px;
  color: #7f8fa6;
  margin: 0 0 18px;
}
.asset-price {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #102033;
  margin-bottom: 8px;
}
.asset-change {
  display: block;
  font-size: 15px;
  font-weight: 600;
}
.asset-change.up {
  color: #16c784;
}
.asset-change.down {
  color: #ea3943;
}
.asset-change.flat {
  color: #7f8fa6;
}
@media (max-width: 575px) {
  .hot-assets-section {
    padding: 55px 0;
  }
  .hot-assets-title h2 {
    font-size: 26px;
  }
  .asset-card {
    min-width: 150px;
  }
}
/* =========================
   热门可交易资产 H5优化
========================= */
@media only screen and (max-width: 767px) {
  .hot-assets-section {
    padding: 40px 0;
    overflow: hidden;
  }
  .hot-assets-container {
    width: 100%;
    padding: 0 14px;
  }
  .hot-assets-title {
    text-align: center;
    margin-bottom: 24px;
  }
  .hot-assets-title h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .hot-assets-title p {
    font-size: 14px;
    color: #8a94a6;
  }
  /* 改成两列 */
  #hotAssets.hot-assets-scroll {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    overflow: visible !important;
    padding: 0;
  }
  /* 卡片 */
  #hotAssets .asset-card {
    width: 100% !important;
    min-width: 0 !important;
    padding: 20px 12px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    text-align: center;
  }
  /* LOGO */
  #hotAssets .asset-logo {
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
  }
  #hotAssets .asset-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  /* 标题 */
  #hotAssets .asset-card h3 {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 4px;
    font-weight: 700;
  }
  /* 股票代码 */
  #hotAssets .asset-card p {
    font-size: 13px;
    color: #8a94a6;
    margin-bottom: 14px;
  }
  /* 价格 */
  #hotAssets .asset-price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
  }
  /* 涨跌 */
  #hotAssets .asset-change {
    font-size: 14px;
    font-weight: 600;
  }
  /* 按钮 */
  .hot-assets-section .button {
    margin-top: 26px;
    width: 100%;
    text-align: center;
  }
}
/* 热门可交易资产 - H5最终修复 */
@media only screen and (max-width: 767.98px) {
  .hot-assets-container {
    width: 100% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
  }
  #hotAssets {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    overflow: visible !important;
    padding: 0 !important;
  }
  #hotAssets .asset-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: none !important;
    padding: 18px 10px !important;
    border: 1px solid #e8eef7 !important;
    border-radius: 16px !important;
    background: #fff !important;
    text-align: center !important;
    box-shadow: 0 6px 18px rgba(30, 84, 160, 0.08) !important;
  }
  #hotAssets .asset-logo {
    width: 42px !important;
    height: 42px !important;
    margin: 0 auto 12px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  #hotAssets .asset-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
  }
  #hotAssets .asset-card h3 {
    font-size: 16px !important;
    line-height: 1.3 !important;
    margin: 0 0 4px !important;
  }
  #hotAssets .asset-card p {
    font-size: 12px !important;
    margin: 0 0 10px !important;
  }
  #hotAssets .asset-price {
    display: block !important;
    font-size: 15px !important;
    margin-bottom: 4px !important;
  }
  #hotAssets .asset-change {
    display: block !important;
    font-size: 12px !important;
  }
}
/* =========================================================
   HeyMeta Trade Page Optimization
   Added marketing sections + responsive fixes
   ========================================================= */
.trade-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6090f7;
  margin-bottom: 12px;
}
.trade-lead,.trade-section-head p {
  font-size: 16px;
  line-height: 1.8;
  color: #667085;
}
.trade-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
}
.trade-section-head h3 {
  margin-bottom: 14px;
}
.trade-opportunity-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}
.opportunity-list {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}
.opportunity-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid #e8eef7;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(75, 81, 91, .06);
}
.opportunity-item span {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  background: #6090f7;
}
.opportunity-item p {
  line-height: 1.7;
  color: #3f4856;
}
.market-visual-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  color: #ffffff;
  background: radial-gradient(circle at 20% 10%, rgba(96, 144, 247, .9), transparent 32%), linear-gradient(135deg, #121b33 0%, #172a56 48%, #081225 100%);
  box-shadow: 0 28px 60px rgba(18, 27, 51, .25);
}
.market-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.market-visual-header,.market-line,.market-visual-footer {
  position: relative;
  z-index: 1;
}
.market-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-weight: 700;
}
.market-visual-header strong {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(38, 209, 126, .18);
  color: #73f6ac;
}
.market-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.market-line b {
  color: #fff17c;
}
.market-visual-footer {
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}
.meaning-card,.process-card,.stat-card {
  height: 100%;
  padding: 28px 24px;
  border: 1px solid #e8eef7;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(75, 81, 91, .07);
}
.meaning-card.active {
  border-color: rgba(96, 144, 247, .35);
  box-shadow: 0 22px 48px rgba(96, 144, 247, .16);
}
.meaning-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #6090f7;
  background: rgba(96, 144, 247, .1);
}
.meaning-card h4,.process-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
}
.meaning-card p,.process-card p {
  line-height: 1.75;
  color: #667085;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.process-card span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: rgba(96, 144, 247, .34);
}
.bonus-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f7faff;
}
.bonus-card {
  padding: 42px;
  border-radius: 30px;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}
.bonus-card h3,.bonus-card p {
  color: #ffffff;
}
.bonus-card .trade-lead {
  color: rgba(255,255,255,.86);
}
.bonus-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.bonus-points span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  color: #ffffff;
}
.bonus-panel {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.bonus-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.bonus-row strong {
  color: #fff17c;
}
.bonus-btn {
  display: block;
  margin-top: 22px;
  padding: 13px 18px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  color: #101b33 !important;
  background: #fff17c;
}
.stats-section {
  padding-top: 35px;
  padding-bottom: 35px;
  background: #ffffff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.stat-card {
  text-align: center;
  padding: 24px 12px;
}
.stat-card strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  color: #6090f7;
}
.stat-card span {
  display: block;
  margin-top: 10px;
  color: #667085;
}
/* Hot assets and product table responsive cleanup */
.hot-assets-title {
  text-align: center;
  margin-bottom: 34px;
}
.hot-assets-title h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #262f3c;
}
.hot-assets-title p {
  font-size: 16px;
  color: #8491a5;
}
.hot-assets-section .text-center .button {
  margin-top: 30px;
}
.table-outer {
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(75, 81, 91, .08);
}
.table-custom-primary th {
  background: #5f8ff5 !important;
  color: #ffffff !important;
}
.table-custom-primary td:first-child {
  font-weight: 700;
  color: #262f3c;
}
@media (max-width: 1199.98px) {
  .process-grid, .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .trade-section-head {
    margin-bottom: 28px;
  }
  .trade-section-head h3, .trade-opportunity-section h3, .bonus-card h3 {
    font-size: 28px;
  }
  .trade-lead, .trade-section-head p {
    font-size: 14px;
  }
  .market-visual-card, .bonus-card {
    padding: 24px 18px;
    border-radius: 22px;
  }
  .process-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  .meaning-card, .process-card, .stat-card {
    padding: 22px 18px;
  }
  .bonus-points {
    display: grid;
    grid-template-columns: 1fr;
  }
  #hotAssets {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    overflow: visible !important;
    padding: 0 15px !important;
  }
  #hotAssets .asset-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 18px 10px !important;
    border: 1px solid #e8eef7 !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    text-align: center !important;
  }
  #hotAssets .asset-logo {
    width: 42px !important;
    height: 42px !important;
    margin: 0 auto 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  #hotAssets .asset-logo img {
    width: 42px !important;
    height: 42px !important;
    object-fit: contain !important;
    display: block !important;
  }
  .hot-assets-title {
    margin-bottom: 24px !important;
  }
  .hot-assets-title h2 {
    font-size: 30px !important;
  }
  .hot-assets-title p {
    font-size: 14px !important;
  }
  .table-outer {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  .table-outer .table-custom {
    min-width: 860px !important;
    table-layout: fixed;
  }
  .table-outer .table-custom th, .table-outer .table-custom td {
    white-space: nowrap;
  }
  .table-outer .table-custom th:first-child, .table-outer .table-custom td:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    width: 128px !important;
    min-width: 128px !important;
    background: #ffffff;
    box-shadow: 1px 0 0 #e8eef7;
  }
  .table-outer .table-custom thead th:first-child, .table-outer .table-custom thead th {
    background: #5f8ff5 !important;
    color: #ffffff !important;
  }
}
@media (max-width: 575.98px) {
  #hotAssets {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .market-line, .bonus-row {
    font-size: 13px;
  }
}
/* =========================================================
   HeyMeta Trade Page - H5 / Mobile Display Fix
   说明：以下为移动端补充样式，建议放在 css/style.css 文件最后。
   ========================================================= */
/* 防止移动端横向溢出 */
html,body {
  max-width: 100%;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
.trade-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6090f7;
  background: rgba(96, 144, 247, .1);
}
.trade-lead {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.85;
  color: #667085;
}
.trade-section-head {
  max-width: 760px;
  margin: 0 auto 44px;
}
.trade-section-head p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.8;
  color: #667085;
}
.opportunity-list {
  margin-top: 28px;
}
.opportunity-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #edf1f7;
}
.opportunity-item span,.process-card span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  background: #6090f7;
}
.opportunity-item p {
  margin: 0;
  line-height: 1.75;
  color: #3f4856;
}
.market-visual-card {
  position: relative;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f1d3a 0%, #182e5b 52%, #234a90 100%);
  box-shadow: 0 24px 60px rgba(20, 48, 96, .22);
  overflow: hidden;
}
.market-visual-card::before {
  content: '';
  position: absolute;
  inset: -80px -80px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(96, 144, 247, .4);
  filter: blur(18px);
}
.market-visual-header,.market-line,.market-visual-footer {
  position: relative;
  z-index: 1;
}
.market-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  color: #ffffff;
}
.market-visual-header strong {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  color: #101b33;
  background: #fff17c;
}
.market-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
}
.market-line b {
  color: #ffffff;
}
.market-line-up b {
  color: #fff17c;
}
.market-visual-footer {
  margin-top: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,.68);
}
.meaning-card,.process-card {
  height: 100%;
  padding: 30px 26px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(75, 81, 91, .09);
}
.meaning-card.active {
  border: 1px solid rgba(96, 144, 247, .3);
  box-shadow: 0 18px 48px rgba(96, 144, 247, .16);
}
.meaning-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  font-size: 26px;
  font-weight: 800;
  color: #6090f7;
  background: rgba(96, 144, 247, .1);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-card h4,.meaning-card h4 {
  margin-top: 16px;
  margin-bottom: 12px;
  font-weight: 700;
}
.process-card p,.meaning-card p {
  line-height: 1.75;
  color: #667085;
}
.bonus-section {
  background: #ffffff;
}
.bonus-card {
  padding: 46px;
  border-radius: 32px;
  background: linear-gradient(135deg, #101b33 0%, #182e5b 58%, #254d96 100%);
  box-shadow: 0 26px 70px rgba(20, 48, 96, .2);
}
.stats-grid {
  align-items: stretch;
}
.stat-card {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(75, 81, 91, .07);
}
@media (max-width: 991.98px) {
  .process-grid, .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bonus-card {
    padding: 34px 26px;
  }
}
@media (max-width: 767.98px) {
  .section-md {
    padding-top: 46px;
    padding-bottom: 46px;
  }
  .breadcrumbs-custom-title {
    font-size: 28px !important;
    line-height: 1.25 !important;
  }
  .breadcrumbs-custom-main p {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }
  .row.row-30 > [class*='col-'] + [class*='col-'] {
    margin-top: 22px;
  }
  .trade-opportunity-section, .trade-meaning-section, .trade-process-section, .bonus-section, .stats-section {
    text-align: left;
  }
  .trade-opportunity-section h3, .trade-section-head h3, .bonus-card h3, .stats-section h3 {
    font-size: 26px !important;
    line-height: 1.32 !important;
  }
  .trade-section-head {
    margin-bottom: 26px;
    text-align: center;
  }
  .trade-section-head p, .trade-lead {
    font-size: 14px !important;
    line-height: 1.75 !important;
  }
  .opportunity-list {
    margin-top: 18px;
  }
  .opportunity-item {
    padding: 13px 0;
    gap: 10px;
  }
  .opportunity-item span, .process-card span {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
  .opportunity-item p {
    font-size: 14px;
    line-height: 1.65;
  }
  .market-visual-card {
    padding: 22px 16px;
    border-radius: 20px;
  }
  .market-visual-header {
    margin-bottom: 14px;
  }
  .market-line {
    padding: 12px 0;
    font-size: 13px;
  }
  .market-line b {
    white-space: nowrap;
  }
  .market-visual-footer {
    font-size: 13px;
  }
  .meaning-card, .process-card {
    height: auto;
    padding: 22px 18px;
    border-radius: 18px;
    text-align: center;
  }
  .meaning-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
    border-radius: 15px;
    font-size: 22px;
  }
  .meaning-card h4, .process-card h4 {
    font-size: 18px !important;
    line-height: 1.35;
  }
  .meaning-card p, .process-card p {
    font-size: 14px;
  }
  .process-grid, .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .process-card {
    text-align: left;
  }
  .bonus-card {
    padding: 24px 18px;
    border-radius: 22px;
  }
  .bonus-card .trade-eyebrow {
    background: rgba(255,255,255,.12);
    color: #fff17c;
  }
  .bonus-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }
  .bonus-points span {
    text-align: center;
    font-size: 13px;
  }
  .bonus-panel {
    padding: 18px 16px;
    border-radius: 18px;
  }
  .bonus-row {
    gap: 8px;
    font-size: 13px;
  }
  .bonus-btn {
    padding: 12px 14px;
    font-size: 14px;
  }
  .stat-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    text-align: left;
  }
  .stat-card strong {
    font-size: 26px;
  }
  .stat-card span {
    margin-top: 0;
    font-size: 14px;
  }
  .box-modern {
    max-width: 100% !important;
    padding: 22px 16px !important;
    border-radius: 18px !important;
  }
  .box-modern-media {
    padding: 10px 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 48px !important;
  }
  .box-modern-title {
    font-size: 18px !important;
    font-weight: 700;
  }
  .box-modern-text {
    margin-top: 10px !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
  }
  .hot-assets-section {
    padding: 46px 15px !important;
  }
  .hot-assets-container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .hot-assets-title h2 {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }
  #hotAssets {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    overflow: visible !important;
    padding: 0 !important;
  }
  #hotAssets .asset-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 16px 8px !important;
    border-radius: 16px !important;
  }
  #hotAssets .asset-name, #hotAssets .asset-title, #hotAssets h3, #hotAssets h4 {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }
  .table-outer {
    position: relative;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
  }
  .table-outer::after {
    content: '← 左右滑动查看更多 →';
    display: block;
    padding: 10px 0 0;
    text-align: center;
    font-size: 12px;
    color: #8491a5;
  }
  .table-outer .table-custom {
    width: 860px !important;
    min-width: 860px !important;
    table-layout: fixed !important;
  }
  .table-outer .table-custom th, .table-outer .table-custom td {
    padding: 14px 10px !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    white-space: nowrap !important;
  }
  .table-outer .table-custom th:first-child, .table-outer .table-custom td:first-child {
    position: sticky !important;
    left: 0 !important;
    z-index: 5 !important;
    width: 120px !important;
    min-width: 120px !important;
    background: #ffffff !important;
    box-shadow: 1px 0 0 #e8eef7 !important;
  }
  .table-outer .table-custom thead th, .table-outer .table-custom thead th:first-child {
    background: #5f8ff5 !important;
    color: #ffffff !important;
  }
  /* H5 平台对比表：横向滑动展示，避免挤压错位 */
  #pt-creative {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  #pt-creative .pt-creative-aside, #pt-creative .pt-creative-main {
    min-width: 260px;
  }
  #pt-creative .pt-creative-aside {
    float: left;
    width: 38% !important;
  }
  #pt-creative .pt-creative-main {
    margin-left: 38% !important;
    width: 62% !important;
  }
  #pt-creative .pt-creative-features li {
    min-height: 42px !important;
    padding: 10px 8px !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  #pt-creative .pt-creative h4 {
    font-size: 18px !important;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .app-badge {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .app-badge .list-inline-item {
    margin: 0 !important;
  }
  .app-badge img {
    width: 100% !important;
    max-width: 110px;
  }
  .section-md .col-6.text-center {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .trade-eyebrow {
    font-size: 10px;
    padding: 5px 10px;
  }
  .market-line {
    flex-direction: column;
    gap: 3px;
  }
  .stat-card strong {
    font-size: 24px;
  }
  .table-outer .table-custom {
    width: 820px !important;
    min-width: 820px !important;
  }
  #pt-creative .pt-creative-aside {
    width: 42% !important;
  }
  #pt-creative .pt-creative-main {
    margin-left: 42% !important;
    width: 58% !important;
  }
}
/* =========================================================
   HeyMeta New Home Page Styles
   Add this block at the end of css/style.css
   ========================================================= */
.hm-home {
  font-family: "Open Sans", Arial, sans-serif;
  color: #102033;
  background: #ffffff;
  overflow: hidden;
}
.hm-home * {
  box-sizing: border-box;
}
.hm-section {
  padding: 90px 0;
}
.hm-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hm-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  background: radial-gradient(circle at 78% 18%, rgba(98,187,234,.38), transparent 34%), radial-gradient(circle at 20% 80%, rgba(255,241,124,.16), transparent 28%), linear-gradient(135deg, #061533 0%, #102a63 55%, #0d1b3d 100%);
  color: #ffffff;
}
.hm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .38;
  pointer-events: none;
}
.hm-hero .hm-container {
  position: relative;
  z-index: 2;
}
.hm-hero-row,.hm-row {
  display: flex;
  align-items: center;
  gap: 60px;
}
.hm-col {
  flex: 1;
  min-width: 0;
}
.hm-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(98,187,234,.16);
  color: #62bbea;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .9px;
  text-transform: uppercase;
}
.hm-hero h1,.hm-home h1,.hm-home h2,.hm-home h3 {
  color: inherit;
  letter-spacing: 0;
}
.hm-hero h1 {
  margin: 0 0 24px;
  font-size: 58px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
}
.hm-gradient {
  color: #62bbea;
}
.hm-hero-desc {
  max-width: 620px;
  margin: 0 0 32px;
  color: rgba(255,255,255,.84);
  font-size: 20px;
  line-height: 1.8;
}
.hm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}
.hm-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.hm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none !important;
  transition: all .25s ease;
  cursor: pointer;
}
.hm-btn-primary {
  background: #62bbea;
  color: #061533 !important;
  border: 1px solid #62bbea;
  box-shadow: 0 12px 30px rgba(98,187,234,.32);
}
.hm-btn-primary:hover {
  background: #ffffff;
  color: #061533 !important;
  border-color: #ffffff;
  transform: translateY(-2px);
}
.hm-btn-outline {
  border: 1px solid rgba(255,255,255,.36);
  color: #ffffff !important;
  background: rgba(255,255,255,.04);
}
.hm-btn-outline:hover {
  background: #ffffff;
  color: #061533 !important;
  border-color: #ffffff;
  transform: translateY(-2px);
}
.hm-btn-light {
  border: 1px solid #d0d8e8;
  color: #102033 !important;
  background: #ffffff;
}
.hm-btn-light:hover {
  border-color: #62bbea;
  color: #102033 !important;
  transform: translateY(-2px);
}
.hm-hero-img {
  width: 100%;
  max-width: 560px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 28px 60px rgba(0,0,0,.22));
}
.hm-stats {
  margin-top: -45px;
  position: relative;
  z-index: 5;
}
.hm-stat-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 28px;
  background: #e8eef8;
  box-shadow: 0 24px 70px rgba(16,32,51,.16);
}
.hm-stat-item {
  padding: 34px 24px;
  background: #ffffff;
  text-align: center;
}
.hm-stat-num {
  margin-bottom: 8px;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  color: #102a63;
}
.hm-stat-text {
  color: #667085;
  font-size: 15px;
  line-height: 1.5;
}
.hm-title {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.hm-title h2 {
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 800;
  color: #102033;
}
.hm-title p {
  margin: 0;
  color: #667085;
  font-size: 18px;
  line-height: 1.8;
}
.hm-grid {
  display: grid;
  gap: 24px;
}
.hm-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.hm-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.hm-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(16,32,51,.08);
  transition: all .25s ease;
}
.hm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(16,32,51,.12);
}
.hm-card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #62bbea, #1e63d6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.hm-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  color: #102033;
}
.hm-card p {
  margin: 0;
  color: #667085;
  line-height: 1.8;
}
.hm-bg-light {
  background: #f7faff;
}
.hm-bonus {
  background: url("../images/bg-image-1.jpg") center center / cover no-repeat;
  color: #ffffff;
}
.hm-bonus h2 {
  margin: 0 0 22px;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff;
}
.hm-bonus h3 {
  color: #ffffff;
}
.hm-bonus p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.8;
}
.hm-bonus-panel {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.hm-bonus-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: #ffffff;
}
.hm-bonus-row:first-child {
  padding-top: 0;
}
.hm-bonus-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.hm-bonus-row strong {
  color: #fff17c;
  white-space: nowrap;
}
.hm-steps {
  counter-reset: step;
}
.hm-step {
  position: relative;
}
.hm-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 20px;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  color: rgba(98,187,234,.35);
}
.hm-market-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(16,32,51,.07);
}
.hm-market-name strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.3;
  color: #102033;
}
.hm-market-name span {
  color: #667085;
  font-size: 14px;
}
.hm-up {
  color: #16a34a;
  font-weight: 800;
}
.hm-down {
  color: #ef4444;
  font-weight: 800;
}
.hm-meq {
  background: linear-gradient(135deg, #f7faff, #eef6ff);
}
.hm-meq h2 {
  margin: 0 0 22px;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 800;
  color: #102033;
}
.hm-meq p {
  margin: 0 0 28px;
  color: #667085;
  font-size: 18px;
  line-height: 1.8;
}
.hm-risk {
  padding: 36px;
  border-radius: 24px;
  background: #fff7e6;
  color: #8a5a00;
  line-height: 1.8;
}
@media (max-width: 991.98px) {
  .hm-section {
    padding: 64px 0;
  }
  .hm-hero {
    padding: 90px 0 70px;
  }
  .hm-hero-row, .hm-row {
    flex-direction: column;
    gap: 40px;
  }
  .hm-hero h1 {
    font-size: 38px;
  }
  .hm-hero-desc {
    font-size: 16px;
  }
  .hm-stat-card, .hm-grid-3, .hm-grid-4 {
    grid-template-columns: 1fr;
  }
  .hm-title h2, .hm-bonus h2, .hm-meq h2 {
    font-size: 30px;
  }
  .hm-title p, .hm-bonus p, .hm-meq p {
    font-size: 16px;
  }
  .hm-card {
    padding: 26px 22px;
  }
  .hm-stats {
    margin-top: -24px;
  }
}
@media (max-width: 575.98px) {
  .hm-container {
    padding: 0 18px;
  }
  .hm-hero {
    padding: 72px 0 56px;
  }
  .hm-hero h1 {
    font-size: 31px;
  }
  .hm-tags {
    gap: 10px;
  }
  .hm-tags span {
    font-size: 13px;
    padding: 8px 12px;
  }
  .hm-actions {
    flex-direction: column;
  }
  .hm-btn {
    width: 100%;
  }
  .hm-stat-item {
    padding: 26px 18px;
  }
  .hm-bonus-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .hm-risk {
    padding: 24px 20px;
  }
}
/* =========================================================
   HeyMeta 首页优化样式：基于原模板风格，不覆盖导航与底部栏
   使用方法：放到 css/home-optimized.css，或追加到 style.css 最底部
========================================================= */
.hero-trade-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-trade-tags span {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(96, 144, 247, .12);
  color: #262f3c;
  font-size: 13px;
  font-weight: 600;
}
.context-dark .hero-trade-tags span {
  background: rgba(255, 255, 255, .15);
  color: #ffffff;
}
.home-section-desc {
  max-width: 760px;
  margin: 18px auto 45px;
  color: #8491a5;
  font-size: 16px;
  line-height: 1.8;
}
.home-intro-section .badge {
  margin-bottom: 18px;
}
.home-intro-section p + p {
  margin-top: 18px;
}
.home-feature-card {
  height: 100%;
}
.home-feature-card .box-modern-text p {
  color: #8491a5;
}
/* 赠金模块：延续旧模板卡片风格 */
.bonus-section {
  background: #ffffff;
}
.bonus-card {
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(16, 27, 51, .92) 0%, rgba(23, 47, 101, .84) 100%), url("../images/index/bonus-bg.jpg") center center / cover no-repeat;
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(18, 27, 51, .18);
}
.bonus-card h3,.bonus-card p {
  color: #ffffff;
}
.trade-eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: #fff17c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trade-lead {
  margin-top: 18px;
  color: rgba(255, 255, 255, .78) !important;
  font-size: 16px;
  line-height: 1.8;
}
.bonus-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.bonus-points span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
  font-size: 13px;
}
.bonus-panel {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
}
.bonus-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.bonus-row strong {
  color: #fff17c;
}
.bonus-btn {
  display: block;
  margin-top: 22px;
  padding: 13px 18px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  color: #101b33 !important;
  background: #fff17c;
}
.bonus-btn:hover {
  background: #ffffff;
  color: #101b33 !important;
}
/* AI流程 */
.home-step-card {
  height: 100%;
  padding: 30px 24px;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: -1px 9px 18px 0 rgba(75, 81, 91, .08);
}
.home-step-num {
  margin-bottom: 18px;
  font-family: Muli, sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  color: rgba(96, 144, 247, .25);
}
.home-step-card h4 {
  margin-bottom: 12px;
  font-weight: 600;
}
.home-step-card p {
  color: #8491a5;
  line-height: 1.8;
}
/* 热门资产 */
.home-market-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: -1px 9px 18px 0 rgba(75, 81, 91, .08);
  border: 1px solid #ebebeb;
}
.home-market-card strong {
  display: block;
  margin-bottom: 5px;
  font-family: Muli, sans-serif;
  font-size: 18px;
  color: #262f3c;
}
.home-market-card span {
  color: #8491a5;
  font-size: 13px;
}
.home-market-card em {
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}
.home-market-card .up {
  color: #22a06b;
}
.home-market-card .down {
  color: #e55353;
}
/* CTA */
.home-cta-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}
.home-start-item {
  height: 100%;
  padding: 28px 20px;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: -1px 9px 18px 0 rgba(75, 81, 91, .08);
}
.home-start-item strong {
  display: inline-block;
  margin-bottom: 15px;
  color: #6090f7;
  font-family: Muli, sans-serif;
  font-size: 28px;
}
.home-start-item h4 {
  margin-bottom: 10px;
  font-weight: 600;
}
.home-start-item p {
  color: #8491a5;
  line-height: 1.7;
}
.home-risk-note {
  max-width: 900px;
  margin: 38px auto 0;
  padding: 18px 22px;
  border-radius: 7px;
  background: #fff9d9;
  color: #7a6500;
  font-size: 13px;
  line-height: 1.8;
}
@media (max-width: 991.98px) {
  .bonus-card {
    padding: 32px 24px;
  }
  .home-section-desc {
    margin-bottom: 32px;
  }
}
@media (max-width: 575.98px) {
  .hero-trade-tags span {
    font-size: 12px;
    padding: 7px 10px;
  }
  .bonus-card {
    border-radius: 18px;
    padding: 28px 18px;
  }
  .bonus-row {
    font-size: 13px;
  }
  .home-market-card {
    padding: 18px;
  }
}
.ie-panel {
  display: none;
  background: #212121;
  padding: 10px 0;
  box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, .3);
  clear: both;
  text-align: center;
  position: relative;
  z-index: 1;
}
html.ie-10 .ie-panel, html.lt-ie-10 .ie-panel {
  display: block;
}
/* ================= HeyMeta Platform Page Optimized Styles ================ */
:root {
  --hm-blue: #62BBEA;
  --hm-deep: #102A56;
  --hm-dark: #07172F;
  --hm-gold: #F2C94C;
  --hm-text: #4E5B6C;
  --hm-card: #ffffff;
  --hm-line: rgba(98, 187, 234, .18);
  --hm-shadow: 0 18px 48px rgba(15, 42, 86, .10);
  --hm-shadow-soft: 0 12px 36px rgba(15, 42, 86, .08);
}
.hm-platform-page {
  overflow: hidden;
  background: #fff;
}
.hm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hm-blue);
}
.hm-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hm-blue), var(--hm-gold));
}
.hm-section-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}
.hm-section-head h3, .hm-platform-hero h3, .hm-feature-copy h3, .hm-interface-copy h3 {
  letter-spacing: -.02em;
}
.hm-section-head p, .hm-platform-hero p, .hm-feature-copy p, .hm-interface-copy p {
  color: var(--hm-text);
  line-height: 1.86;
}
.hm-platform-hero {
  position: relative;
  padding-top: 88px;
  padding-bottom: 88px;
  background: radial-gradient(circle at 8% 12%, rgba(98, 187, 234, .16), transparent 32%), radial-gradient(circle at 92% 18%, rgba(242, 201, 76, .12), transparent 28%), linear-gradient(180deg, #F7FBFF 0%, #FFFFFF 100%);
}
.hm-platform-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 80px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
  pointer-events: none;
}
.hm-platform-hero .container {
  position: relative;
  z-index: 1;
}
.hm-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}
.hm-hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid var(--hm-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--hm-deep);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(16, 42, 86, .05);
}
.hm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}
.hm-visual-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(98,187,234,.18);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--hm-shadow);
  backdrop-filter: blur(10px);
}
.hm-visual-card img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.hm-floating-card {
  position: absolute;
  right: 10px;
  bottom: 18px;
  width: 188px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #102A56, #0A1B3A);
  color: #fff;
  box-shadow: 0 18px 42px rgba(16,42,86,.22);
}
.hm-floating-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
  color: var(--hm-gold);
}
.hm-floating-card span {
  font-size: 13px;
  opacity: .84;
}
.hm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 18px;
}
.hm-stat-card {
  min-height: 142px;
  padding: 24px 22px;
  border: 1px solid var(--hm-line);
  border-radius: 24px;
  background: var(--hm-card);
  box-shadow: var(--hm-shadow-soft);
  transition: .28s ease;
}
.hm-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hm-shadow);
}
.hm-stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--hm-deep);
  font-size: 28px;
  line-height: 1.15;
}
.hm-stat-card span {
  display: block;
  color: var(--hm-text);
  font-size: 14px;
  line-height: 1.6;
}
.hm-capability-section {
  padding-top: 86px;
  padding-bottom: 68px;
}
.hm-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hm-capability-card {
  height: 100%;
  padding: 30px 24px;
  border: 1px solid rgba(98,187,234,.18);
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #F8FCFF);
  box-shadow: 0 12px 34px rgba(16, 42, 86, .07);
  transition: .28s ease;
}
.hm-capability-card:hover {
  transform: translateY(-6px);
  border-color: rgba(98,187,234,.42);
}
.hm-capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #fff;
  font-size: 26px;
  background: linear-gradient(135deg, var(--hm-blue), #2386C8);
  box-shadow: 0 12px 24px rgba(98,187,234,.32);
}
.hm-capability-card h4 {
  margin-bottom: 12px;
  color: var(--hm-deep);
  font-size: 20px;
}
.hm-capability-card p {
  margin-bottom: 0;
  color: var(--hm-text);
  line-height: 1.76;
}
.hm-feature-section {
  padding-top: 92px;
  padding-bottom: 42px;
  background: #F6FAFE;
}
.hm-feature-row {
  position: relative;
  margin-bottom: 62px;
  padding: 34px;
  border: 1px solid rgba(98,187,234,.16);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 42, 86, .07);
}
.hm-feature-copy {
  max-width: 560px;
}
.hm-feature-copy h3 {
  margin-bottom: 18px;
  color: var(--hm-deep);
}
.hm-feature-copy p {
  margin-bottom: 16px;
}
.hm-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.hm-check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--hm-deep);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}
.hm-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--hm-blue);
  font-weight: 800;
}
.hm-feature-img {
  text-align: center;
}
.hm-feature-img img {
  max-width: 100%;
  border-radius: 24px;
}
.hm-interface-section {
  position: relative;
  padding-top: 92px;
  padding-bottom: 92px;
  background: linear-gradient(135deg, #07172F 0%, #102A56 100%);
  color: #fff;
}
.hm-interface-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 20%, rgba(98,187,234,.24), transparent 30%), radial-gradient(circle at 85% 78%, rgba(242,201,76,.14), transparent 28%);
  pointer-events: none;
}
.hm-interface-section .container {
  position: relative;
  z-index: 1;
}
.hm-interface-copy p {
  color: rgba(255,255,255,.76);
}
.hm-interface-copy .hm-kicker {
  color: var(--hm-gold);
}
.hm-interface-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.hm-interface-card {
  padding: 24px 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
}
.hm-interface-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(98,187,234,.22);
  color: var(--hm-gold);
  font-weight: 800;
}
.hm-interface-card h4 {
  margin-bottom: 9px;
  color: #fff;
  font-size: 18px;
}
.hm-interface-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.68;
  font-size: 14px;
}
.hm-steps-section {
  padding-top: 92px;
  padding-bottom: 92px;
  background: linear-gradient(rgba(7, 23, 47, .80), rgba(7, 23, 47, .80)), url('images/bg-image-1-2.jpg') center/cover no-repeat;
}
.hm-steps-section .hm-section-head h3, .hm-steps-section .hm-section-head p {
  color: #fff;
}
.hm-steps-section .hm-section-head p {
  color: rgba(255,255,255,.76);
}
.hm-step-card {
  height: 100%;
  padding: 34px 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  background: rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
  transition: .28s ease;
}
.hm-step-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.14);
}
.hm-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--hm-gold), #FFE8A3);
  color: var(--hm-dark);
  font-size: 20px;
  font-weight: 800;
}
.hm-step-card h4 {
  color: #fff;
  margin-bottom: 12px;
}
.hm-step-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.76;
}
.hm-platform-cta {
  padding: 70px 0;
  background: #fff;
}
.hm-cta-box {
  padding: 44px;
  border-radius: 30px;
  background: radial-gradient(circle at 8% 20%, rgba(98,187,234,.20), transparent 28%), linear-gradient(135deg, #F7FBFF, #FFFFFF);
  border: 1px solid rgba(98,187,234,.18);
  box-shadow: var(--hm-shadow-soft);
}
.hm-cta-box p {
  margin-bottom: 0;
  color: var(--hm-text);
  line-height: 1.78;
}
.hm-capability-grid .hm-capability-card:nth-child(n+5) {
  margin-top: 2px;
}
.hm-interface-grid .hm-interface-card {
  min-height: 176px;
}
@media (max-width: 1199.98px) {
  .hm-stats-grid, .hm-capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991.98px) {
  .hm-platform-hero, .hm-capability-section, .hm-feature-section, .hm-interface-section, .hm-steps-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .hm-visual-card {
    margin-top: 38px;
  }
  .hm-feature-row {
    padding: 26px;
  }
  .hm-feature-copy {
    max-width: none;
  }
  .hm-feature-img {
    margin-top: 28px;
  }
}
@media (max-width: 767.98px) {
  .hm-platform-hero {
    padding-top: 52px;
    padding-bottom: 54px;
  }
  .hm-platform-hero h3, .hm-section-head h3, .hm-feature-copy h3, .hm-interface-copy h3 {
    font-size: 28px;
    line-height: 1.26;
  }
  .hm-section-head {
    margin-bottom: 30px;
  }
  .hm-hero-badges, .hm-hero-actions {
    gap: 10px;
  }
  .hm-hero-actions .button, .hm-cta-box .button {
    width: 100%;
    text-align: center;
  }
  .hm-stats-grid, .hm-capability-grid, .hm-interface-grid, .hm-check-list {
    grid-template-columns: 1fr;
  }
  .hm-stat-card, .hm-capability-card, .hm-feature-row, .hm-cta-box {
    border-radius: 22px;
  }
  .hm-feature-row {
    margin-bottom: 34px;
    padding: 22px;
  }
  .hm-floating-card {
    position: static;
    width: auto;
    margin-top: 18px;
  }
  .hm-interface-copy {
    margin-bottom: 28px;
  }
  .hm-steps-section .row > div + div {
    margin-top: 18px;
  }
}
@media (max-width: 575.98px) {
  .hm-platform-hero p, .hm-section-head p, .hm-feature-copy p, .hm-interface-copy p {
    font-size: 15px;
  }
  .hm-stat-card strong {
    font-size: 24px;
  }
  .hm-visual-card {
    padding: 16px;
  }
}
.ie-panel {
  display: none;
  background: #212121;
  padding: 10px 0;
  box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, .3);
  clear: both;
  text-align: center;
  position: relative;
  z-index: 1;
}
html.ie-10 .ie-panel, html.lt-ie-10 .ie-panel {
  display: block;
}
:root {
  --hm-primary: #62BBEA;
  --hm-primary-2: #3D8BFF;
  --hm-deep: #102A56;
  --hm-text: #17233D;
  --hm-sub: #63748D;
  --hm-muted: #8B9AB3;
  --hm-soft: #F5FAFF;
  --hm-soft-2: #EEF7FF;
  --hm-line: #E5EEF9;
  --hm-white: #FFFFFF;
  --hm-gold: #F2C94C;
  --hm-shadow: 0 18px 46px rgba(37, 112, 217, 0.12);
  --hm-shadow-sm: 0 10px 28px rgba(16, 42, 86, 0.08);
  --hm-radius-lg: 28px;
  --hm-radius-md: 20px;
  --hm-radius-sm: 14px;
}
body {
  color: var(--hm-text);
  background: #fff;
}
.hm-business-page {
  background: #fff;
  overflow: hidden;
}
.hm-business-page .button.button-primary, .hm-business-page .button.button-primary-outline {
  border-radius: 999px;
  letter-spacing: 0;
}
.hm-business-page .button.button-primary {
  background: linear-gradient(135deg, var(--hm-primary-2), var(--hm-primary));
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(61, 139, 255, .24);
}
.hm-business-page .button.button-primary-outline {
  border-color: rgba(98, 187, 234, .55);
  color: var(--hm-primary-2);
  background: rgba(255, 255, 255, .74);
}
.hm-page-top {
  padding: 0;
  min-height: auto;
}
.rd-navbar-classic.rd-navbar-static {
  box-shadow: 0 10px 30px rgba(16, 42, 86, 0.06);
}
.hm-business-hero {
  position: relative;
  padding: 96px 0 78px;
  background: radial-gradient(circle at 82% 18%, rgba(98, 187, 234, .24), transparent 30%), radial-gradient(circle at 12% 16%, rgba(242, 201, 76, .16), transparent 24%), linear-gradient(180deg, #F6FBFF 0%, #FFFFFF 100%);
  overflow: hidden;
}
.hm-business-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(98, 187, 234, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(98, 187, 234, .08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .62), transparent 82%);
  pointer-events: none;
}
.hm-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
  z-index: 1;
}
.hm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(98, 187, 234, .12);
  color: var(--hm-primary-2);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hm-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hm-gold);
  box-shadow: 0 0 0 6px rgba(242, 201, 76, .16);
  flex: 0 0 auto;
}
.hm-business-hero h1 {
  max-width: 680px;
  margin: 0 0 22px;
  color: var(--hm-deep);
  font-size: 50px;
  line-height: 1.14;
  letter-spacing: -1.2px;
  font-weight: 800;
}
.hm-gradient-text {
  background: linear-gradient(90deg, var(--hm-primary-2), var(--hm-primary), #92DFFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hm-business-hero .hm-hero-desc {
  max-width: 650px;
  color: var(--hm-sub);
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 28px;
}
.hm-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hm-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hm-hero-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--hm-sub);
  border: 1px solid var(--hm-line);
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(16, 42, 86, .04);
}
.hm-hero-visual {
  position: relative;
  min-height: 430px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(235, 247, 255, .9));
  border: 1px solid rgba(98, 187, 234, .22);
  box-shadow: var(--hm-shadow);
  overflow: hidden;
}
.hm-hero-visual::before, .hm-hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hm-hero-visual::before {
  width: 340px;
  height: 340px;
  right: -120px;
  top: -112px;
  background: rgba(98, 187, 234, .2);
}
.hm-hero-visual::after {
  width: 230px;
  height: 230px;
  left: -68px;
  bottom: -80px;
  background: rgba(242, 201, 76, .16);
}
.hm-hero-img {
  position: absolute;
  width: 78%;
  max-width: 470px;
  left: 50%;
  top: 51%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 22px 34px rgba(37, 112, 217, .18));
}
.hm-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(98, 187, 234, .2);
  box-shadow: 0 14px 30px rgba(16, 42, 86, .08);
  color: var(--hm-deep);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}
.hm-floating-card i {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--hm-soft-2);
  color: var(--hm-primary-2);
  font-style: normal;
  font-weight: 800;
}
.hm-floating-card.card-1 {
  top: 54px;
  left: 34px;
}
.hm-floating-card.card-2 {
  top: 116px;
  right: 34px;
}
.hm-floating-card.card-3 {
  left: 58px;
  bottom: 60px;
}
.hm-floating-card.card-4 {
  right: 48px;
  bottom: 72px;
}
.hm-section {
  padding: 88px 0;
  position: relative;
}
.hm-section-soft {
  background: var(--hm-soft);
}
.hm-section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.hm-section-head h2, .hm-section-head h3 {
  margin: 0 0 14px;
  color: var(--hm-deep);
  font-size: 38px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -.5px;
}
.hm-section-head p {
  margin: 0;
  color: var(--hm-sub);
  font-size: 16px;
  line-height: 1.9;
}
.hm-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hm-type-card {
  position: relative;
  min-height: 390px;
  padding: 32px;
  border-radius: var(--hm-radius-lg);
  background: #fff;
  border: 1px solid var(--hm-line);
  box-shadow: var(--hm-shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}
.hm-type-card::after {
  content: "";
  position: absolute;
  right: -84px;
  bottom: -84px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(98, 187, 234, .1);
  pointer-events: none;
}
.hm-type-card:hover {
  transform: translateY(-8px);
  border-color: rgba(98, 187, 234, .55);
  box-shadow: var(--hm-shadow);
}
.hm-type-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--hm-primary-2);
  background: linear-gradient(135deg, var(--hm-soft-2), #fff);
  font-size: 28px;
  box-shadow: 0 12px 24px rgba(98, 187, 234, .14);
}
.hm-type-card h3 {
  margin: 0 0 12px;
  color: var(--hm-deep);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}
.hm-type-card p {
  color: var(--hm-sub);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.hm-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.hm-check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--hm-sub);
  font-size: 14px;
  line-height: 1.6;
}
.hm-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hm-primary);
  box-shadow: 0 0 0 5px rgba(98, 187, 234, .13);
}
.hm-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.hm-value-card {
  min-height: 250px;
  padding: 30px 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--hm-line);
  box-shadow: var(--hm-shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease;
}
.hm-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hm-shadow);
}
.hm-value-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--hm-soft-2);
  color: var(--hm-primary-2);
  font-size: 27px;
  margin-bottom: 18px;
}
.hm-value-card h3 {
  margin: 0 0 10px;
  color: var(--hm-deep);
  font-size: 19px;
  font-weight: 800;
}
.hm-value-card p {
  margin: 0;
  color: var(--hm-sub);
  font-size: 14px;
  line-height: 1.75;
}
.hm-mode-wrap {
  display: grid;
  grid-template-columns: .88fr 1.42fr;
  gap: 44px;
  align-items: start;
}
.hm-mode-aside {
  position: sticky;
  top: 95px;
  padding: 34px;
  border-radius: var(--hm-radius-lg);
  color: #fff;
  background: radial-gradient(circle at 88% 18%, rgba(242, 201, 76, .24), transparent 26%), linear-gradient(135deg, var(--hm-deep), #1E78E8);
  box-shadow: var(--hm-shadow);
  overflow: hidden;
}
.hm-mode-aside h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 34px;
  line-height: 1.28;
  font-weight: 800;
}
.hm-mode-aside p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.8;
}
.hm-mode-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.hm-mode-aside li {
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  display: flex;
  gap: 9px;
  align-items: center;
}
.hm-mode-aside li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hm-gold);
  flex: 0 0 auto;
}
.hm-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.hm-mode-card {
  min-height: 165px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--hm-line);
  box-shadow: var(--hm-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hm-mode-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hm-shadow);
}
.hm-mode-num {
  margin-bottom: 8px;
  color: rgba(61, 139, 255, .28);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}
.hm-mode-card h3 {
  margin: 0 0 8px;
  color: var(--hm-deep);
  font-size: 18px;
  font-weight: 800;
}
.hm-mode-card p {
  margin: 0;
  color: var(--hm-sub);
  font-size: 14px;
  line-height: 1.72;
}
.hm-process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.hm-process-card {
  position: relative;
  min-height: 180px;
  padding: 26px 14px;
  text-align: center;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--hm-line);
  box-shadow: var(--hm-shadow-sm);
}
.hm-process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--hm-primary), transparent);
  z-index: 2;
}
.hm-process-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--hm-primary-2);
  background: var(--hm-soft-2);
  font-size: 26px;
  font-weight: 900;
}
.hm-process-card h3 {
  margin: 0 0 6px;
  color: var(--hm-deep);
  font-size: 17px;
  font-weight: 800;
}
.hm-process-card p {
  margin: 0;
  color: var(--hm-sub);
  font-size: 13px;
  line-height: 1.6;
}
.hm-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 42px;
  border-radius: var(--hm-radius-lg);
  background: radial-gradient(circle at 90% 18%, rgba(242, 201, 76, .26), transparent 24%), linear-gradient(135deg, var(--hm-deep), #1F7AE8);
  box-shadow: var(--hm-shadow);
  overflow: hidden;
}
.hm-cta-box h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 34px;
  line-height: 1.3;
  font-weight: 800;
}
.hm-cta-box p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.8;
}
.hm-contact-wrap {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 36px;
  align-items: start;
}
.hm-contact-info {
  padding: 34px;
  border-radius: var(--hm-radius-lg);
  background: linear-gradient(180deg, #fff, #F6FBFF);
  border: 1px solid var(--hm-line);
  box-shadow: var(--hm-shadow-sm);
}
.hm-contact-info h3 {
  margin: 0 0 12px;
  color: var(--hm-deep);
  font-size: 26px;
  font-weight: 800;
}
.hm-contact-info p {
  margin: 0 0 24px;
  color: var(--hm-sub);
  font-size: 15px;
  line-height: 1.8;
}
.hm-contact-list {
  display: grid;
  gap: 14px;
}
.hm-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--hm-sub);
  font-size: 14px;
  line-height: 1.7;
}
.hm-contact-item span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--hm-soft-2);
  color: var(--hm-primary-2);
  font-size: 16px;
}
.hm-contact-form-card {
  padding: 34px;
  border-radius: var(--hm-radius-lg);
  background: #fff;
  border: 1px solid var(--hm-line);
  box-shadow: var(--hm-shadow);
}
.hm-contact-form-card .form-wrap {
  margin-bottom: 22px;
  position: relative;
}
.hm-contact-form-card .form-input {
  border: 1px solid var(--hm-line);
  border-radius: 15px;
  background: #fff;
  transition: all .25s ease;
}
.hm-contact-form-card .form-input:focus {
  border-color: var(--hm-primary);
  box-shadow: 0 0 0 4px rgba(98, 187, 234, .14);
}
.hm-contact-form-card textarea.form-input {
  min-height: 132px;
  resize: vertical;
}
.hm-contact-form-card .button {
  min-height: 50px;
}
.contact-form-custom .form-wrap.has-error .form-input {
  border-color: #ec4242 !important;
  box-shadow: 0 0 0 4px rgba(236, 66, 66, .12);
}
.contact-form-custom.form-validation-left .form-wrap.has-error .form-validation {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: #ec4242;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 6px;
  padding-left: 0;
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  z-index: 1;
  font-weight: 400;
  letter-spacing: 0;
}
.contact-form-custom.form-validation-left .form-validation {
  display: none;
  opacity: 0;
  visibility: hidden;
  min-height: 0;
}
.contact-form-custom #submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}
.contact-form-custom #submit-btn .spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, .32);
  border-top-color: #fff;
  border-radius: 50%;
  animation: hm-spin .6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes hm-spin {
  to {
    transform: rotate(360deg);
  }
}
.contact-form-custom.form-in-process {
  pointer-events: none;
}
.snackbars.info {
  background-color: #17a2b8;
}
.snackbars.info p {
  color: #fff;
}
.footer-light {
  border-top: 1px solid var(--hm-line);
  background: #F9FBFF;
}
@media (max-width: 1199px) {
  .hm-business-hero h1 {
    font-size: 44px;
  }
  .hm-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hm-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hm-process-card::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .hm-business-hero {
    padding: 72px 0 60px;
  }
  .hm-hero-grid, .hm-mode-wrap, .hm-contact-wrap, .hm-cta-box {
    grid-template-columns: 1fr;
  }
  .hm-hero-visual {
    min-height: 360px;
  }
  .hm-type-grid {
    grid-template-columns: 1fr;
  }
  .hm-mode-aside {
    position: relative;
    top: auto;
  }
}
@media (max-width: 767px) {
  .hm-business-hero {
    padding: 52px 0 46px;
  }
  .hm-business-hero h1 {
    font-size: 34px;
    letter-spacing: -.4px;
  }
  .hm-business-hero .hm-hero-desc {
    font-size: 15px;
    line-height: 1.8;
  }
  .hm-hero-actions .button {
    width: 100%;
  }
  .hm-hero-visual {
    min-height: 292px;
    border-radius: 24px;
  }
  .hm-hero-img {
    width: 86%;
  }
  .hm-floating-card {
    display: none;
  }
  .hm-section {
    padding: 62px 0;
  }
  .hm-section-head {
    margin-bottom: 32px;
  }
  .hm-section-head h2, .hm-section-head h3 {
    font-size: 28px;
  }
  .hm-type-card, .hm-contact-info, .hm-contact-form-card, .hm-cta-box, .hm-mode-aside {
    padding: 26px;
    border-radius: 22px;
  }
  .hm-value-grid, .hm-mode-grid, .hm-process-grid {
    grid-template-columns: 1fr;
  }
  .hm-value-card {
    min-height: auto;
  }
  .hm-process-card {
    min-height: auto;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 14px;
    align-items: center;
    text-align: left;
  }
  .hm-process-num {
    margin: 0;
  }
  .hm-cta-box h2, .hm-mode-aside h2 {
    font-size: 27px;
  }
  .hm-contact-form-card .form-wrap {
    margin-bottom: 16px;
  }
}
/* Ecosystem V2 */
.hm-ecosystem-v2 {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  padding: 32px;
  border-radius: 32px;
  background: radial-gradient(circle at 18% 20%, rgba(98, 187, 234, 0.18), transparent 26%), radial-gradient(circle at 90% 80%, rgba(47, 123, 234, 0.10), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border: 1px solid rgba(98, 187, 234, 0.26);
  box-shadow: 0 24px 60px rgba(16, 42, 86, 0.08);
  overflow: hidden;
}
.hm-ecosystem-v2::before {
  content: "";
  position: absolute;
  left: 385px;
  top: 56px;
  bottom: 56px;
  width: 1px;
  background: linear-gradient( 180deg, transparent, rgba(98, 187, 234, 0.45), transparent );
}
.hm-ecosystem-core {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 36px 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #12356d 0%, #2f7bea 100%);
  color: #ffffff;
  box-shadow: 0 20px 46px rgba(47, 123, 234, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hm-ecosystem-core-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}
.hm-ecosystem-core-icon .mdi {
  font-size: 34px;
  line-height: 1;
}
.hm-ecosystem-core h3 {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.28;
  margin-bottom: 14px;
  font-weight: 800;
}
.hm-ecosystem-core p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 26px;
}
.hm-ecosystem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hm-ecosystem-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.hm-ecosystem-modules {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.hm-ecosystem-card {
  position: relative;
  min-height: 180px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 231, 248, 0.95);
  box-shadow: 0 14px 36px rgba(16, 42, 86, 0.06);
  transition: all 0.25s ease;
  overflow: hidden;
}
.hm-ecosystem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(98, 187, 234, 0.7);
  box-shadow: 0 20px 44px rgba(47, 123, 234, 0.14);
}
.hm-ecosystem-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(98, 187, 234, 0.08);
}
.hm-ecosystem-card-wide {
  grid-column: 1 / -1;
  min-height: 150px;
}
.hm-ecosystem-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.hm-eco-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(98, 187, 234, 0.18), rgba(255, 255, 255, 0.95));
  color: #2f7bea;
}
.hm-eco-icon .mdi {
  font-size: 25px;
  line-height: 1;
}
.hm-eco-num {
  font-size: 24px;
  font-weight: 800;
  color: rgba(47, 123, 234, 0.18);
}
.hm-ecosystem-card h4 {
  position: relative;
  z-index: 1;
  color: #102a56;
  font-size: 19px;
  line-height: 1.35;
  margin-bottom: 10px;
  font-weight: 800;
}
.hm-ecosystem-card p {
  position: relative;
  z-index: 1;
  color: #5f6f89;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 0;
}
/* H5 */
@media (max-width: 991px) {
  .hm-ecosystem-v2 {
    grid-template-columns: 1fr;
    padding: 22px;
    border-radius: 24px;
  }
  .hm-ecosystem-v2::before {
    display: none;
  }
  .hm-ecosystem-core {
    min-height: auto;
    padding: 30px 24px;
  }
  .hm-ecosystem-core h3 {
    font-size: 26px;
  }
  .hm-ecosystem-modules {
    grid-template-columns: 1fr;
  }
  .hm-ecosystem-card, .hm-ecosystem-card-wide {
    grid-column: auto;
    min-height: auto;
  }
}
@media (max-width: 575px) {
  .hm-ecosystem-v2 {
    padding: 16px;
  }
  .hm-ecosystem-core {
    padding: 26px 20px;
    border-radius: 22px;
  }
  .hm-ecosystem-core h3 {
    font-size: 24px;
  }
  .hm-ecosystem-card {
    padding: 22px 20px;
    border-radius: 20px;
  }
  .hm-eco-icon {
    width: 44px;
    height: 44px;
  }
  .hm-eco-icon .mdi {
    font-size: 23px;
  }
}
/* ================= HeyMeta About Page Unified Style ================= */
:root {
  --hm-primary: #62BBEA;
  --hm-primary-dark: #2F7BEA;
  --hm-primary-soft: #EAF5FF;
  --hm-deep: #102A56;
  --hm-text: #17233D;
  --hm-sub: #5F6F89;
  --hm-light: #8B9AB3;
  --hm-bg: #F7FAFF;
  --hm-white: #FFFFFF;
  --hm-gold: #F2C94C;
  --hm-border: #E6EEF8;
  --hm-shadow: 0 18px 45px rgba(47, 123, 234, 0.12);
  --hm-shadow-soft: 0 10px 30px rgba(16, 42, 86, 0.08);
  --hm-radius-lg: 28px;
  --hm-radius-md: 20px;
  --hm-radius-sm: 14px;
}
body {
  background: #fff;
  color: var(--hm-text);
}
.hm-about-section {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
}
.hm-about-section-soft {
  background: radial-gradient(circle at 8% 10%, rgba(98,187,234,.10), transparent 26%), radial-gradient(circle at 92% 12%, rgba(242,201,76,.12), transparent 22%), var(--hm-bg);
}
.hm-section-head {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}
.hm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(98,187,234,.12);
  color: var(--hm-primary-dark);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .2px;
}
.hm-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hm-gold);
  box-shadow: 0 0 0 6px rgba(242,201,76,.16);
}
.hm-section-head h2, .hm-about-copy h2, .hm-about-hero h1 {
  color: var(--hm-deep);
  font-weight: 800;
  letter-spacing: -.8px;
}
.hm-section-head h2 {
  font-size: 40px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.hm-section-head p {
  margin: 0 auto;
  color: var(--hm-sub);
  font-size: 16px;
  line-height: 1.85;
}
.hm-gradient-text {
  background: linear-gradient(90deg, var(--hm-primary-dark), var(--hm-primary), #8DD8FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hm-about-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: all .25s ease;
}
.hm-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--hm-primary-dark), var(--hm-primary));
  box-shadow: 0 14px 30px rgba(47,123,234,.28);
}
.hm-btn-outline {
  color: var(--hm-primary-dark);
  background: #fff;
  border: 1px solid var(--hm-border);
  box-shadow: var(--hm-shadow-soft);
}
.hm-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
/* Hero */
.hm-about-hero {
  position: relative;
  padding: 116px 0 96px;
  background: radial-gradient(circle at 82% 22%, rgba(98,187,234,.28), transparent 30%), radial-gradient(circle at 12% 16%, rgba(242,201,76,.18), transparent 24%), linear-gradient(180deg, #F6FBFF 0%, #FFFFFF 100%);
  overflow: hidden;
}
.hm-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(98,187,234,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(98,187,234,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 82%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 82%);
  pointer-events: none;
}
.hm-about-hero-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 58px;
  align-items: center;
}
.hm-about-hero h1 {
  max-width: 720px;
  font-size: 54px;
  line-height: 1.12;
  margin-bottom: 22px;
}
.hm-about-hero p {
  max-width: 650px;
  color: var(--hm-sub);
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 0;
}
.hm-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hm-hero-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--hm-border);
  color: var(--hm-sub);
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(16,42,86,.04);
}
.hm-hero-visual {
  position: relative;
  min-height: 438px;
  border-radius: var(--hm-radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(234,245,255,.92));
  border: 1px solid rgba(98,187,234,.22);
  box-shadow: var(--hm-shadow);
  overflow: hidden;
}
.hm-hero-visual::before, .hm-hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.hm-hero-visual::before {
  width: 360px;
  height: 360px;
  right: -126px;
  top: -120px;
  background: rgba(98,187,234,.22);
}
.hm-hero-visual::after {
  width: 250px;
  height: 250px;
  left: -70px;
  bottom: -90px;
  background: rgba(242,201,76,.15);
}
.hm-hero-visual-img {
  position: absolute;
  z-index: 1;
  width: 78%;
  max-width: 430px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 35px rgba(47,123,234,.16));
}
.hm-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(98,187,234,.20);
  box-shadow: 0 12px 28px rgba(16,42,86,.08);
  color: var(--hm-deep);
  font-size: 14px;
  font-weight: 700;
}
.hm-float-card i {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--hm-primary-soft);
  color: var(--hm-primary-dark);
  font-size: 12px;
  font-style: normal;
}
.hm-float-1 {
  left: 34px;
  top: 46px;
}
.hm-float-2 {
  right: 30px;
  top: 120px;
}
.hm-float-3 {
  left: 42px;
  bottom: 58px;
}
.hm-float-4 {
  right: 46px;
  bottom: 58px;
}
.hm-breadcrumb-bar {
  padding: 16px 0;
  background: #fff;
  border-top: 1px solid var(--hm-border);
  border-bottom: 1px solid var(--hm-border);
}
.hm-breadcrumb-bar ul {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--hm-light);
  font-size: 14px;
}
.hm-breadcrumb-bar a {
  color: var(--hm-primary-dark);
}
.hm-breadcrumb-bar li + li::before {
  content: "/";
  margin-right: 10px;
  color: #C7D3E5;
}
/* Cards */
.hm-card-grid-4, .hm-card-grid-3, .hm-card-grid-2 {
  display: grid;
  gap: 22px;
}
.hm-card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.hm-card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.hm-card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.hm-info-card, .hm-business-card, .hm-safe-card, .hm-partner-card, .hm-why-card {
  position: relative;
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--hm-border);
  box-shadow: var(--hm-shadow-soft);
  transition: all .28s ease;
  overflow: hidden;
}
.hm-info-card:hover, .hm-business-card:hover, .hm-safe-card:hover, .hm-partner-card:hover, .hm-why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(98,187,234,.48);
  box-shadow: var(--hm-shadow);
}
.hm-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--hm-primary-soft), #fff);
  color: var(--hm-primary-dark);
  font-size: 26px;
  font-weight: 800;
}
.hm-info-card h3, .hm-business-card h3, .hm-safe-card h3, .hm-partner-card h3, .hm-why-card h3 {
  color: var(--hm-deep);
  font-size: 20px;
  line-height: 1.35;
  margin: 0 0 10px;
  font-weight: 800;
}
.hm-info-card p, .hm-business-card p, .hm-safe-card p, .hm-partner-card p, .hm-why-card p {
  color: var(--hm-sub);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}
.hm-info-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -58px;
  bottom: -58px;
  border-radius: 50%;
  background: rgba(98,187,234,.10);
}
/* Story */
.hm-about-copy h2 {
  font-size: 38px;
  line-height: 1.25;
  margin-bottom: 18px;
}
.hm-about-copy p {
  color: var(--hm-sub);
  line-height: 1.9;
  margin-bottom: 14px;
}
.hm-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.hm-check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--hm-sub);
  font-size: 14px;
}
.hm-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hm-primary);
  box-shadow: 0 0 0 5px rgba(98,187,234,.14);
}
.hm-image-card {
  position: relative;
  padding: 28px;
  border-radius: var(--hm-radius-lg);
  background: linear-gradient(145deg, #fff, #EEF8FF);
  border: 1px solid rgba(98,187,234,.22);
  box-shadow: var(--hm-shadow);
  overflow: hidden;
}
.hm-image-card img {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  filter: drop-shadow(0 20px 30px rgba(47,123,234,.16));
}
.hm-image-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(98,187,234,.16);
}
.hm-image-card::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(242,201,76,.16);
}
/* Business rows */
.hm-business-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: center;
  padding: 34px;
  margin-bottom: 24px;
}
.hm-business-card:nth-child(even) .hm-business-copy {
  order: 2;
}
.hm-business-card:nth-child(even) .hm-business-media {
  order: 1;
}
.hm-business-media {
  min-height: 250px;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--hm-primary-soft), #fff);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hm-business-media img {
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(47,123,234,.14));
}
.hm-business-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.hm-business-points li {
  position: relative;
  padding-left: 24px;
  color: var(--hm-sub);
  font-size: 14px;
}
.hm-business-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--hm-primary-dark);
  font-weight: 800;
}
/* Ecosystem */
.hm-eco-wrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 34px;
  border-radius: var(--hm-radius-lg);
  background: linear-gradient(145deg, #FFFFFF, #F2F9FF);
  border: 1px solid rgba(98,187,234,.22);
  box-shadow: var(--hm-shadow);
}
.hm-eco-core {
  max-width: 420px;
  margin: 0 auto 28px;
  padding: 30px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--hm-deep), var(--hm-primary-dark));
  box-shadow: 0 18px 42px rgba(47,123,234,.24);
}
.hm-eco-core h3 {
  color: #fff;
  margin-bottom: 8px;
}
.hm-eco-core p {
  color: rgba(255,255,255,.82);
  margin: 0;
}
.hm-eco-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.hm-eco-item {
  padding: 20px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--hm-border);
  box-shadow: 0 8px 18px rgba(16,42,86,.05);
}
.hm-eco-item h4 {
  color: var(--hm-deep);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}
.hm-eco-item p {
  color: var(--hm-sub);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}
/* Partner logos */
.hm-logo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
}
.hm-logo-list span, .hm-logo-list img {
  height: 34px;
  max-width: 120px;
  object-fit: contain;
}
.hm-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--hm-primary-soft);
  color: var(--hm-primary-dark);
  font-size: 12px;
  font-weight: 800;
}
/* MEQ CTA */
.hm-meq-callout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
  padding: 44px;
  border-radius: var(--hm-radius-lg);
  color: #fff;
  background: radial-gradient(circle at 86% 18%, rgba(242,201,76,.30), transparent 22%), linear-gradient(135deg, var(--hm-deep), #1F7AE8);
  box-shadow: var(--hm-shadow);
  overflow: hidden;
}
.hm-meq-callout h2 {
  color: #fff;
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 14px;
}
.hm-meq-callout p {
  color: rgba(255,255,255,.80);
  line-height: 1.9;
  margin: 0;
}
.hm-meq-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hm-meq-mini {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.hm-meq-mini strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-size: 18px;
}
.hm-meq-mini span {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.6;
}
.hm-why-card {
  padding: 24px;
}
.hm-why-card .hm-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-size: 20px;
}
.hm-why-card h3 {
  font-size: 18px;
}
.hm-footer-spacer {
  height: 0;
}
@media (max-width: 991px) {
  .hm-about-hero-wrap, .hm-business-card, .hm-meq-callout {
    grid-template-columns: 1fr;
  }
  .hm-business-card:nth-child(even) .hm-business-copy, .hm-business-card:nth-child(even) .hm-business-media {
    order: initial;
  }
  .hm-card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hm-card-grid-3, .hm-card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hm-eco-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hm-meq-mini-grid {
    grid-template-columns: 1fr;
  }
  .hm-about-hero h1 {
    font-size: 42px;
  }
  .hm-hero-visual {
    min-height: 370px;
  }
}
@media (max-width: 575px) {
  .hm-about-hero {
    padding: 58px 0 50px;
  }
  .hm-about-hero h1 {
    font-size: 34px;
    letter-spacing: -.4px;
  }
  .hm-about-hero p {
    font-size: 15px;
  }
  .hm-about-section {
    padding: 64px 0;
  }
  .hm-section-head {
    margin-bottom: 34px;
  }
  .hm-section-head h2, .hm-about-copy h2, .hm-meq-callout h2 {
    font-size: 28px;
  }
  .hm-card-grid-4, .hm-card-grid-3, .hm-card-grid-2, .hm-eco-grid, .hm-check-list {
    grid-template-columns: 1fr;
  }
  .hm-btn {
    width: 100%;
  }
  .hm-hero-visual {
    min-height: 300px;
    border-radius: 22px;
  }
  .hm-hero-visual-img {
    width: 88%;
  }
  .hm-float-card {
    display: none;
  }
  .hm-info-card, .hm-business-card, .hm-safe-card, .hm-partner-card, .hm-why-card, .hm-eco-wrap, .hm-meq-callout, .hm-image-card {
    padding: 24px;
    border-radius: 22px;
  }
  .hm-business-media {
    min-height: 210px;
  }
  .hm-logo-list {
    gap: 10px;
  }
}
.ie-panel {
  display: none;
  background: #212121;
  padding: 10px 0;
  box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, .3);
  clear: both;
  text-align: center;
  position: relative;
  z-index: 1;
}
html.ie-10 .ie-panel, html.lt-ie-10 .ie-panel {
  display: block;
}
:root {
  --hm-primary: #62BBEA;
  --hm-primary-dark: #2F7BEA;
  --hm-navy: #102A56;
  --hm-navy-2: #12356D;
  --hm-text: #17233D;
  --hm-muted: #5F6F89;
  --hm-soft: #F6FAFF;
  --hm-soft-2: #EEF7FF;
  --hm-border: #DCEBFA;
  --hm-gold: #F2C94C;
  --hm-white: #FFFFFF;
  --hm-shadow: 0 22px 55px rgba(16, 42, 86, 0.09);
  --hm-shadow-blue: 0 20px 44px rgba(47, 123, 234, 0.16);
  --hm-radius-xl: 32px;
  --hm-radius-lg: 24px;
  --hm-radius-md: 18px;
}
body {
  color: var(--hm-text);
  background: #fff;
}
.hm-section, .hm-reward-section {
  padding: 92px 0;
  position: relative;
}
.hm-section-soft {
  background: linear-gradient(180deg, #F7FBFF 0%, #FFFFFF 100%);
}
.hm-section-head {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}
.hm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(98, 187, 234, 0.14);
  color: var(--hm-primary-dark);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.hm-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hm-gold);
  box-shadow: 0 0 0 6px rgba(242, 201, 76, 0.16);
}
.hm-section-head h2, .hm-reward-copy h2, .hm-cta-panel h2 {
  color: var(--hm-navy);
  font-size: 42px;
  line-height: 1.22;
  font-weight: 850;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.hm-section-head p, .hm-reward-copy p, .hm-cta-panel p {
  color: var(--hm-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 0;
}
.hm-btn-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: all .25s ease;
  border: 1px solid transparent;
  text-decoration: none !important;
}
.hm-btn-primary {
  background: linear-gradient(135deg, var(--hm-primary-dark), var(--hm-primary));
  color: #fff !important;
  box-shadow: var(--hm-shadow-blue);
}
.hm-btn-outline {
  background: #fff;
  color: var(--hm-primary-dark) !important;
  border-color: var(--hm-border);
  box-shadow: 0 12px 28px rgba(16,42,86,.06);
}
.hm-btn:hover {
  transform: translateY(-2px);
}
.hm-reward-hero {
  padding: 94px 0 84px;
  background: radial-gradient(circle at 12% 16%, rgba(242, 201, 76, .16), transparent 24%), radial-gradient(circle at 86% 22%, rgba(98, 187, 234, .22), transparent 30%), linear-gradient(180deg, #FFFFFF 0%, #F7FBFF 100%);
  overflow: hidden;
}
.hm-reward-hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 54px;
  align-items: center;
}
.hm-reward-copy h2 {
  font-size: 50px;
  max-width: 720px;
}
.hm-gradient {
  background: linear-gradient(90deg, #12356D, #2F7BEA, #62BBEA);
  -webkit-background-clip: text;
  color: transparent;
}
.hm-reward-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hm-reward-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--hm-border);
  color: var(--hm-muted);
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(16,42,86,.05);
}
.hm-reward-visual {
  position: relative;
  min-height: 430px;
  padding: 28px;
  border-radius: var(--hm-radius-xl);
  background: radial-gradient(circle at 20% 20%, rgba(98,187,234,.18), transparent 28%), linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,248,255,.92));
  border: 1px solid rgba(98,187,234,.24);
  box-shadow: var(--hm-shadow);
  overflow: hidden;
}
.hm-reward-visual::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -80px;
  border-radius: 50%;
  background: rgba(47, 123, 234, .12);
}
.hm-bonus-card-main {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, #12356D, #2F7BEA);
  color: #fff;
  box-shadow: var(--hm-shadow-blue);
  margin-bottom: 18px;
}
.hm-bonus-card-main strong {
  display: block;
  font-size: 30px;
  line-height: 1.25;
  margin-bottom: 8px;
  color: #fff;
}
.hm-bonus-card-main span {
  color: rgba(255,255,255,.82);
  font-size: 14px;
}
.hm-flow-mini {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}
.hm-flow-mini-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--hm-border);
  box-shadow: 0 12px 30px rgba(16,42,86,.06);
}
.hm-flow-mini-icon, .hm-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  background: linear-gradient(135deg, rgba(98,187,234,.18), rgba(255,255,255,.95));
  color: var(--hm-primary-dark);
  box-shadow: 0 12px 28px rgba(47,123,234,.10);
  font-size: 24px;
  font-weight: 900;
}
.hm-flow-mini-icon .mdi, .hm-card-icon .mdi {
  font-size: 25px;
  line-height: 1;
}
.hm-flow-mini-item h4, .hm-bonus-card h3, .hm-rule-card h3, .hm-step-card h3 {
  color: var(--hm-navy);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 820;
  margin: 0 0 5px;
}
.hm-flow-mini-item p, .hm-bonus-card p, .hm-rule-card p, .hm-step-card p {
  color: var(--hm-muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}
.hm-card-grid-2, .hm-card-grid-3, .hm-card-grid-4 {
  display: grid;
  gap: 22px;
}
.hm-card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.hm-card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.hm-card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.hm-bonus-card, .hm-rule-card, .hm-step-card, .hm-example-panel, .hm-note-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--hm-radius-lg);
  background: rgba(255,255,255,.95);
  border: 1px solid var(--hm-border);
  box-shadow: var(--hm-shadow);
  transition: all .25s ease;
}
.hm-bonus-card:hover, .hm-rule-card:hover, .hm-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(98,187,234,.75);
  box-shadow: 0 24px 50px rgba(47,123,234,.13);
}
.hm-bonus-card::after, .hm-rule-card::after, .hm-step-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(98,187,234,.08);
}
.hm-bonus-card > *, .hm-rule-card > *, .hm-step-card > * {
  position: relative;
  z-index: 1;
}
.hm-bonus-card h3 {
  margin-top: 20px;
  font-size: 24px;
}
.hm-bonus-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(242,201,76,.16);
  color: #A47D12;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}
.hm-bonus-list, .hm-clean-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}
.hm-bonus-list li, .hm-clean-list li {
  position: relative;
  padding-left: 24px;
  color: var(--hm-muted);
  font-size: 14px;
  line-height: 1.65;
}
.hm-bonus-list li::before, .hm-clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hm-primary);
  box-shadow: 0 0 0 5px rgba(98,187,234,.12);
}
.hm-step-card {
  padding: 26px;
}
.hm-step-num {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.hm-step-num strong {
  font-size: 30px;
  color: rgba(47,123,234,.22);
  font-weight: 900;
}
.hm-step-num .mdi {
  color: var(--hm-primary-dark);
  font-size: 25px;
}
.hm-rule-card {
  min-height: 230px;
}
.hm-rule-card h3 {
  margin: 18px 0 10px;
}
.hm-example-panel {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 30px;
  align-items: center;
  padding: 34px;
  background: radial-gradient(circle at 10% 20%, rgba(242,201,76,.14), transparent 24%), linear-gradient(135deg, #FFFFFF 0%, #F3FAFF 100%);
}
.hm-example-left h2 {
  color: var(--hm-navy);
  font-size: 34px;
  line-height: 1.28;
  font-weight: 850;
  margin: 10px 0 14px;
}
.hm-example-left p {
  color: var(--hm-muted);
  line-height: 1.8;
  margin: 0;
}
.hm-example-flow {
  display: grid;
  gap: 14px;
}
.hm-example-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--hm-border);
  box-shadow: 0 10px 28px rgba(16,42,86,.05);
}
.hm-example-step .num {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hm-soft-2);
  color: var(--hm-primary-dark);
  font-size: 22px;
  font-weight: 900;
}
.hm-example-step h4 {
  color: var(--hm-navy);
  font-size: 17px;
  margin: 0 0 4px;
  font-weight: 820;
}
.hm-example-step p {
  color: var(--hm-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.hm-note-panel {
  padding: 26px 28px;
  background: rgba(255, 250, 231, .58);
  border-color: rgba(242,201,76,.38);
  box-shadow: 0 14px 36px rgba(164,125,18,.06);
  margin-top: 28px;
}
.hm-note-panel strong {
  color: #9B7516;
  display: block;
  margin-bottom: 8px;
}
.hm-note-panel p {
  color: #706044;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}
.hm-cta-section {
  padding: 88px 0;
  background: #fff;
}
.hm-cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 42px;
  border-radius: var(--hm-radius-xl);
  background: radial-gradient(circle at 88% 20%, rgba(242,201,76,.30), transparent 24%), linear-gradient(135deg, #12356D 0%, #2F7BEA 100%);
  box-shadow: var(--hm-shadow-blue);
}
.hm-cta-panel h2, .hm-cta-panel p {
  color: #fff;
}
.hm-cta-panel p {
  opacity: .8;
  max-width: 680px;
}
.hm-cta-panel .hm-btn {
  background: #fff;
  color: var(--hm-primary-dark) !important;
}
.hm-mobile-only {
  display: none;
}
@media (max-width: 1199px) {
  .hm-card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hm-reward-copy h2 {
    font-size: 44px;
  }
}
@media (max-width: 991px) {
  .hm-reward-hero-wrap, .hm-example-panel, .hm-cta-panel {
    grid-template-columns: 1fr;
  }
  .hm-card-grid-2, .hm-card-grid-3 {
    grid-template-columns: 1fr;
  }
  .hm-reward-visual {
    min-height: auto;
  }
  .hm-cta-panel {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .hm-reward-hero {
    padding: 60px 0 56px;
  }
  .hm-section, .hm-reward-section, .hm-cta-section {
    padding: 64px 0;
  }
  .hm-section-head {
    margin-bottom: 32px;
  }
  .hm-section-head h2, .hm-cta-panel h2 {
    font-size: 28px;
  }
  .hm-reward-copy h2 {
    font-size: 34px;
  }
  .hm-section-head p, .hm-reward-copy p {
    font-size: 14px;
  }
  .hm-btn-row {
    gap: 10px;
  }
  .hm-btn {
    width: 100%;
  }
  .hm-card-grid-4 {
    grid-template-columns: 1fr;
  }
  .hm-bonus-card, .hm-rule-card, .hm-step-card, .hm-example-panel, .hm-note-panel, .hm-cta-panel {
    padding: 24px 20px;
    border-radius: 22px;
  }
  .hm-bonus-card h3 {
    font-size: 22px;
  }
  .hm-rule-card {
    min-height: auto;
  }
  .hm-reward-tags span {
    font-size: 12px;
  }
  .hm-example-left h2 {
    font-size: 26px;
  }
  .hm-example-step {
    grid-template-columns: 54px 1fr;
    gap: 12px;
    padding: 16px;
  }
  .hm-example-step .num {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .hm-flow-mini-item {
    grid-template-columns: 46px 1fr;
    padding: 16px;
  }
  .hm-flow-mini-icon, .hm-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    flex-basis: 46px;
  }
  .hm-flow-mini-icon .mdi, .hm-card-icon .mdi {
    font-size: 23px;
  }
}
/* ===== Extracted from ai.html: page specific styles ===== */
/* HeyMeta AI optimized page */
:root {
  --hm-blue: #5f91f3;
  --hm-deep: #1e3a8a;
  --hm-soft: #eef5ff;
  --hm-line: rgba(55, 104, 220, .14);
  --hm-text: #24324a;
  --hm-muted: #6b7c8f;
  --hm-gold: #f2c94c;
}
.hm-ai-kicker {
  color: var(--hm-blue);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}
.hm-ai-lead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--hm-muted);
}
.hm-ai-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.hm-ai-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #5f6f84;
  line-height: 1.75;
}
.hm-ai-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #62BBEA, #3a70f6);
  box-shadow: 0 0 0 4px rgba(98,187,234,.15);
}
.hm-ai-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.hm-ai-mini-card {
  padding: 18px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--hm-line);
  box-shadow: 0 12px 35px rgba(30,58,138,.07);
}
.hm-ai-mini-card strong {
  display: block;
  color: var(--hm-text);
  margin-bottom: 6px;
  font-size: 16px;
}
.hm-ai-mini-card span {
  color: var(--hm-muted);
  font-size: 13px;
  line-height: 1.65;
}
.hm-function-section {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}
.hm-section-desc {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--hm-muted);
  line-height: 1.9;
}
.hm-function-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.hm-function-card {
  position: relative;
  padding: 28px 28px 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--hm-line);
  box-shadow: 0 18px 45px rgba(30,58,138,.08);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hm-function-card:after {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98,187,234,.28), rgba(98,187,234,0) 68%);
}
.hm-function-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(30,58,138,.12);
}
.hm-function-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.hm-function-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #62BBEA, #4d7df2);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 12px 24px rgba(77,125,242,.2);
}
.hm-function-title {
  flex: 1;
}
.hm-function-title h4 {
  margin: 0 0 5px;
  color: var(--hm-text);
}
.hm-function-title p {
  margin: 0;
  color: var(--hm-muted);
  line-height: 1.7;
}
.hm-function-count {
  position: relative;
  z-index: 1;
  min-width: 45px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef5ff;
  color: var(--hm-blue);
  font-weight: 700;
  font-size: 13px;
}
.hm-tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hm-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #f1f6ff;
  color: #3866c8;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}
.hm-tag.is-hot {
  background: linear-gradient(135deg, #ff6b5f, #e52d3d);
  color: #fff;
}
.hm-tag.is-gold {
  background: linear-gradient(135deg, #f7cf52, #d9a100);
  color: #fff;
}
.hm-workflow {
  background: #0f2f78;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hm-workflow:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(98,187,234,.32), transparent 30%), radial-gradient(circle at 80% 40%, rgba(242,201,76,.16), transparent 28%);
  opacity: .9;
}
.hm-workflow .container {
  position: relative;
  z-index: 1;
}
.hm-workflow .hm-section-desc {
  color: rgba(255,255,255,.76);
}
.hm-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.hm-step {
  padding: 26px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.hm-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--hm-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
}
.hm-step h4 {
  color: #fff;
  margin-bottom: 10px;
}
.hm-step p {
  color: rgba(255,255,255,.76);
  margin-bottom: 0;
  line-height: 1.75;
}
.hm-engine-card {
  padding: 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--hm-line);
  box-shadow: 0 16px 42px rgba(30,58,138,.07);
  height: 100%;
}
.hm-engine-card h4 {
  margin-bottom: 12px;
  color: var(--hm-text);
}
.hm-engine-card p {
  color: var(--hm-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.hm-engine-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}
.hm-engine-card li {
  color: var(--hm-muted);
  line-height: 1.8;
  margin-bottom: 6px;
}
.hm-risk-note {
  margin-top: 22px;
  color: #7d8ba0;
  font-size: 13px;
  line-height: 1.8;
}
.hm-cta-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .hm-ai-feature-strip, .hm-step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hm-function-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .hm-ai-feature-strip, .hm-step-grid {
    grid-template-columns: 1fr;
  }
  .hm-function-card {
    padding: 24px 18px;
    border-radius: 20px;
  }
  .hm-function-head {
    align-items: flex-start;
  }
  .hm-function-count {
    display: none;
  }
  .hm-tag {
    font-size: 12px;
    padding: 7px 11px;
  }
  .hm-ai-lead {
    font-size: 15px;
  }
}
.hm-workflow .hm-step::before {
  display: none !important;
  content: none !important;
}
/* ===== Extracted from busniess.html: form styles ===== */
/* 表单样式优化 */
.contact-form-custom .form-wrap {
  margin-bottom: 20px;
}
.contact-form-custom .form-input {
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}
.contact-form-custom .form-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
/* 表单验证样式优化 */
.contact-form-custom .form-wrap.has-error .form-input {
  border-color: #ec4242 !important;
  box-shadow: 0 0 0 0.2rem rgba(236, 66, 66, 0.15);
}
.contact-form-custom.form-validation-left .form-wrap.has-error .form-validation {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: #ec4242;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 6px;
  padding-left: 0;
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  z-index: 1;
  font-weight: 400;
  letter-spacing: 0;
}
.contact-form-custom.form-validation-left .form-validation {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, display 0.3s ease;
  min-height: 0;
}
.contact-form-custom .form-wrap {
  margin-bottom: 24px;
  position: relative;
}
.contact-form-custom .form-wrap.has-error {
  margin-bottom: 8px;
}
/* textarea特殊处理 */
.contact-form-custom .form-wrap textarea.form-input {
  min-height: 120px;
  resize: vertical;
}
.contact-form-custom .form-wrap.has-error textarea.form-input {
  border-color: #ec4242 !important;
}
.contact-form-custom #submit-btn {
  position: relative;
  min-height: 50px;
  transition: all 0.3s ease;
}
.contact-form-custom #submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.contact-form-custom #submit-btn .spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.contact-form-custom.form-in-process {
  pointer-events: none;
}
.snackbars.info {
  background-color: #17a2b8;
}
.snackbars.info p {
  color: #fff;
}
/* 响应式优化 */
@media (max-width: 767px) {
  .contact-form-custom .form-wrap {
    margin-bottom: 15px;
  }
}
/* ===== HeyMeta unified mobile fixes moved from inline HTML ===== */
@media only screen and (max-width: 767.98px) {
  .hot-assets-section {
    padding: 46px 15px !important;
  }
  .hot-assets-container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .hot-assets-title {
    text-align: center !important;
    margin-bottom: 24px !important;
  }
  .hot-assets-title h2 {
    text-align: center !important;
    justify-content: center !important;
    font-size: 26px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }
  .hot-assets-title p {
    text-align: center !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #8a94a6 !important;
  }
  #hotAssets {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    overflow: visible !important;
    padding: 0 !important;
  }
  #hotAssets .asset-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 16px 8px !important;
    border: 1px solid #e8eef7 !important;
    border-radius: 16px !important;
    background: #fff !important;
    text-align: center !important;
  }
  #hotAssets .asset-logo {
    width: 42px !important;
    height: 42px !important;
    margin: 0 auto 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  #hotAssets .asset-logo img {
    width: 42px !important;
    height: 42px !important;
    object-fit: contain !important;
    display: block !important;
  }
  #hotAssets .asset-name, #hotAssets .asset-title, #hotAssets h3, #hotAssets h4 {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }
  .hot-assets-section .button, .hot-assets-section .button-primary-outline {
    margin-top: 28px !important;
    display: flex !important;
    justify-content: center !important;
  }
  .table-outer {
    position: relative;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
  }
  .table-outer::after {
    content: '← 左右滑动查看更多 →';
    display: block;
    padding: 10px 0 0;
    text-align: center;
    font-size: 12px;
    color: #8491a5;
  }
  .table-outer .table-custom {
    width: 860px !important;
    min-width: 860px !important;
    table-layout: fixed !important;
  }
  .table-outer .table-custom th, .table-outer .table-custom td {
    padding: 14px 10px !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    white-space: nowrap !important;
  }
  .table-outer .table-custom th:first-child, .table-outer .table-custom td:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    width: 120px !important;
    min-width: 120px !important;
    background: #fff;
    box-shadow: 1px 0 0 #e8eef7;
  }
  .table-outer .table-custom thead th:first-child {
    z-index: 5;
    background: #5f8ff5;
  }
  .table-outer .table-custom thead th {
    background: #5f8ff5;
  }
}
/* ======================================================================
   HeyMeta Unified Typography & Layout Layer
   Purpose: keep headings, subtitles, card titles, and H5 styles consistent
   across index / AI / MEQ / trade / platform / reward / about / business.
   Place this layer at the end of style.css so it overrides older page chunks.
   ====================================================================== */
:root {
  --hm-primary: #62BBEA;
  --hm-primary-2: #2F7BEA;
  --hm-primary-dark: #1E78E8;
  --hm-deep: #102A56;
  --hm-dark: #07172F;
  --hm-text: #4E5B6C;
  --hm-sub: #5F6F89;
  --hm-muted: #6B7C8F;
  --hm-gold: #F2C94C;
  --hm-soft: #F7FAFF;
  --hm-soft-2: #EEF7FF;
  --hm-border: #E6EEF8;
  --hm-line: rgba(98, 187, 234, .18);
  --hm-shadow: 0 18px 48px rgba(15, 42, 86, .10);
  --hm-shadow-soft: 0 12px 36px rgba(15, 42, 86, .08);
  --hm-radius-lg: 28px;
  --hm-radius-md: 20px;
  --hm-radius-sm: 14px;
}
body {
  color: var(--hm-text);
}
h1,h2,h3,h4,h5,h6,.heading {
  color: var(--hm-deep);
  font-family: Muli, "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -.01em;
}
/* Page breadcrumb hero title */
.breadcrumbs-custom-title {
  font-size: 44px !important;
  line-height: 1.18 !important;
  font-weight: 800 !important;
  letter-spacing: -.03em !important;
  color: #fff !important;
}
.breadcrumbs-custom-main .big,.breadcrumbs-custom-main p {
  max-width: 760px;
  color: rgba(255, 255, 255, .82) !important;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 400;
}
/* Shared kicker label */
.hm-kicker,.hm-ai-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase;
  color: var(--hm-primary-dark) !important;
}
.hm-kicker::before,.hm-ai-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hm-primary), var(--hm-gold));
}
.hm-workflow .hm-ai-kicker,.context-dark .hm-kicker,.context-dark .hm-ai-kicker {
  color: var(--hm-gold) !important;
}
/* Section titles */
.hm-section-head {
  max-width: 820px !important;
  margin: 0 auto 48px !important;
  text-align: center;
}
.hm-section-head h2,.hm-section-head h3,.hot-assets-title h2,.section > .container > h3.text-center,.section > .container > h3.wow.fadeIn.text-center,.section .container > .text-center > h3,.section .my-4 > h3.text-center,.hm-function-section .text-center > h3,.hm-predict-section .text-center > h3,.hm-quant-section .text-center > h3,.hm-workflow .container > h3,.hm-about-copy h2,.hm-mode-aside h2,.hm-example-left h2 {
  margin: 0 0 14px !important;
  font-size: 38px !important;
  line-height: 1.24 !important;
  font-weight: 800 !important;
  letter-spacing: -.03em !important;
  color: var(--hm-deep) !important;
}
.context-dark h1,.context-dark h2,.context-dark h3,.context-dark h4,.context-dark h5,.context-dark h6,.hm-workflow h3,.hm-mode-aside h2 {
  color: #fff !important;
}
.hm-section-head p,.hot-assets-title p,.hm-section-desc,.hm-about-copy p,.hm-platform-hero p,.hm-reward-hero p,.hm-mode-aside p,.hm-example-left p,.section .container > .text-center > p {
  margin-left: auto;
  margin-right: auto;
  color: var(--hm-sub) !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}
.context-dark p,.hm-workflow .hm-section-desc,.hm-mode-aside p {
  color: rgba(255, 255, 255, .82) !important;
}
/* Intro titles under image/text rows */
.section .col-md-6 > h3:first-child,.section .col-lg-6 > h3:first-child,.inset-1 > h3,.hm-platform-hero h3,.hm-reward-hero h3 {
  margin: 0 0 18px !important;
  font-size: 36px !important;
  line-height: 1.28 !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
  color: var(--hm-deep) !important;
}
.section .col-md-6 > p,.section .col-lg-6 > p,.inset-1 > p,.hm-platform-hero p,.hm-reward-hero p {
  font-size: 16px !important;
  line-height: 1.85 !important;
  color: var(--hm-sub) !important;
}
/* Card and feature titles */
.hm-info-card h3,.hm-business-card h3,.hm-safe-card h3,.hm-partner-card h3,.hm-why-card h3,.hm-feature-copy h3,.hm-type-card h3,.hm-value-card h3,.hm-mode-card h3,.hm-contact-info h3,.hm-bonus-card h3,.hm-step-card h3,.hm-rule-card h3,.hm-scenario-card h3,.hm-ecosystem-core h3,.hm-ecosystem-card h4,.hm-function-title h4,.hm-step h4,.hm-engine-card h4,.asset-card h3,.box-modern-title,.pt-classic-title,.pt-creative-title,.list-blocks-title {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  color: var(--hm-deep) !important;
  font-size: 20px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  letter-spacing: -.01em !important;
}
.hm-feature-copy h3 {
  font-size: 28px !important;
  line-height: 1.28 !important;
}
.hm-info-card p,.hm-business-card p,.hm-safe-card p,.hm-partner-card p,.hm-why-card p,.hm-feature-copy p,.hm-type-card p,.hm-value-card p,.hm-mode-card p,.hm-bonus-card p,.hm-step-card p,.hm-rule-card p,.hm-scenario-card p,.hm-function-title p,.hm-step p,.hm-engine-card p,.asset-card p,.list-blocks-item-inner p {
  color: var(--hm-sub) !important;
  font-size: 14px !important;
  line-height: 1.78 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}
/* Spacing consistency */
.section-md,.hm-about-section,.hm-business-section,.hm-platform-section,.hm-reward-section {
  padding-top: 86px;
  padding-bottom: 86px;
}
.section-lg {
  padding-top: 104px;
  padding-bottom: 104px;
}
.hm-card-grid-4,.hm-card-grid-3,.hm-card-grid-2,.hm-type-grid,.hm-value-grid,.hm-rule-grid,.hm-step-grid,.hm-function-grid {
  gap: 22px;
}
/* Responsive title scale */
@media (max-width: 991.98px) {
  .breadcrumbs-custom-title {
    font-size: 36px !important;
  }
  .hm-section-head h2, .hm-section-head h3, .hot-assets-title h2, .section > .container > h3.text-center, .section .container > .text-center > h3, .section .my-4 > h3.text-center, .hm-workflow .container > h3, .hm-about-copy h2, .hm-mode-aside h2, .hm-example-left h2 {
    font-size: 32px !important;
  }
  .section .col-md-6 > h3:first-child, .section .col-lg-6 > h3:first-child, .inset-1 > h3, .hm-platform-hero h3, .hm-reward-hero h3 {
    font-size: 30px !important;
  }
  .hm-feature-copy h3 {
    font-size: 24px !important;
  }
}
@media (max-width: 767.98px) {
  body {
    line-height: 1.65;
  }
  .breadcrumbs-custom-title {
    font-size: 30px !important;
    line-height: 1.25 !important;
    letter-spacing: -.02em !important;
  }
  .breadcrumbs-custom-main .big, .breadcrumbs-custom-main p {
    font-size: 15px !important;
    line-height: 1.75 !important;
  }
  .hm-section-head {
    margin-bottom: 32px !important;
  }
  .hm-section-head h2, .hm-section-head h3, .hot-assets-title h2, .section > .container > h3.text-center, .section > .container > h3.wow.fadeIn.text-center, .section .container > .text-center > h3, .section .my-4 > h3.text-center, .hm-function-section .text-center > h3, .hm-predict-section .text-center > h3, .hm-quant-section .text-center > h3, .hm-workflow .container > h3, .hm-about-copy h2, .hm-mode-aside h2, .hm-example-left h2 {
    font-size: 26px !important;
    line-height: 1.32 !important;
  }
  .section .col-md-6 > h3:first-child, .section .col-lg-6 > h3:first-child, .inset-1 > h3, .hm-platform-hero h3, .hm-reward-hero h3 {
    font-size: 25px !important;
    line-height: 1.34 !important;
  }
  .hm-section-head p, .hot-assets-title p, .hm-section-desc, .hm-about-copy p, .hm-platform-hero p, .hm-reward-hero p, .section .container > .text-center > p {
    font-size: 14px !important;
    line-height: 1.78 !important;
  }
  .hm-info-card h3, .hm-business-card h3, .hm-safe-card h3, .hm-partner-card h3, .hm-why-card h3, .hm-feature-copy h3, .hm-type-card h3, .hm-value-card h3, .hm-mode-card h3, .hm-contact-info h3, .hm-bonus-card h3, .hm-step-card h3, .hm-rule-card h3, .hm-scenario-card h3, .hm-ecosystem-core h3, .hm-ecosystem-card h4, .hm-function-title h4, .hm-step h4, .hm-engine-card h4, .asset-card h3, .box-modern-title, .pt-classic-title, .pt-creative-title, .list-blocks-title {
    font-size: 18px !important;
    line-height: 1.38 !important;
  }
  .section-md, .hm-about-section, .hm-business-section, .hm-platform-section, .hm-reward-section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .section-lg {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }
}
/* =====================================================
   全站标题统一加粗
   统一控制 H1 / H2 / H3 / H4 / H5 / H6 标题粗细
===================================================== */
h1,h2,h3,h4,h5,h6,.heading,.heading-1,.heading-2,.heading-3,.heading-4,.heading-5,.heading-6 {
  font-weight: 700 !important;
}
/* HeyMeta speed fix: replace external Google Fonts with local system font stack */
body, h1, h2, h3, h4, h5, h6, .heading, .button, input, textarea, select {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}


/* Trade page logo switch fix
   The trade page navbar is inside .page-header-3, whose default CSS always shows the light logo.
   This restores the same behavior as meq.html: dark logo before scroll, light logo after sticky scroll. */

/* Multi-page logo switch fix
 * 适用页面：除 index.html、meq.html 外的常规导航页面。
 * 作用：未滚动时显示深色 logo，滚动吸顶/克隆导航时显示浅色 logo。
 */
body.hm-logo-switch-page .rd-navbar .brand-logo-dark {
    display: block !important;
}

body.hm-logo-switch-page .rd-navbar .brand-logo-light {
    display: none !important;
}

body.hm-logo-switch-page .rd-navbar.rd-navbar--is-stuck .brand-logo-dark,
body.hm-logo-switch-page .rd-navbar.rd-navbar--is-clone .brand-logo-dark {
    display: none !important;
}

body.hm-logo-switch-page .rd-navbar.rd-navbar--is-stuck .brand-logo-light,
body.hm-logo-switch-page .rd-navbar.rd-navbar--is-clone .brand-logo-light {
    display: block !important;
}

/* =====================================================
   Language switch display fix
   PC 端：隐藏 logo 右侧的前一组语言切换，只显示导航菜单后面的后一组。
   H5 端：只显示 logo 右侧的前一组语言切换，隐藏导航菜单里的后一组。
===================================================== */
@media (min-width: 1200px) {
    .rd-navbar-panel > .rd-navbar-lang-panel,
    .rd-navbar-panel > .rd-navbar-lang-panel .list-localization {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .rd-navbar-nav-wrap > .rd-navbar-element_right > .list-localization {
        display: flex !important;
        position: static !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        align-items: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

@media (max-width: 1199.98px) {
    .rd-navbar-panel > .rd-navbar-lang-panel {
        display: flex !important;
        align-items: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .rd-navbar-panel > .rd-navbar-lang-panel .list-localization {
        display: flex !important;
        align-items: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .rd-navbar-nav-wrap > .rd-navbar-element_right > .list-localization {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* =====================================================
   Hot assets realtime quote animation
   Finnhub WebSocket tick updates add .asset-live and price direction classes.
===================================================== */
#hotAssets .asset-card.asset-live {
    position: relative;
}

#hotAssets .asset-card.asset-live::after {
    content: "LIVE";
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    color: #16c784;
    background: rgba(22, 199, 132, .1);
}

#hotAssets .asset-price {
    transition: color .2s ease, transform .2s ease, background-color .2s ease;
}

#hotAssets .asset-price.tick-up {
    color: #16c784 !important;
}

#hotAssets .asset-price.tick-down {
    color: #ea3943 !important;
}

#hotAssets .asset-price.price-flash {
    animation: hm-price-flash .45s ease;
}

@keyframes hm-price-flash {
    0% {
        transform: scale(1);
        background-color: transparent;
    }

    35% {
        transform: scale(1.06);
        background-color: rgba(96, 144, 247, .08);
        border-radius: 8px;
    }

    100% {
        transform: scale(1);
        background-color: transparent;
    }
}

@media (max-width: 767.98px) {
    #hotAssets .asset-card.asset-live::after {
        top: 8px;
        right: 8px;
        font-size: 9px;
        padding: 1px 6px;
    }
}

/* =====================================================
   Hot assets delayed quote label
   Non-US free quote sources use delayed snapshot polling.
===================================================== */
#hotAssets .asset-card.asset-delayed {
    position: relative;
}

#hotAssets .asset-card.asset-delayed::after {
    content: "DELAYED";
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    color: #6090f7;
    background: rgba(96, 144, 247, .1);
}

@media (max-width: 767.98px) {
    #hotAssets .asset-card.asset-delayed::after {
        top: 8px;
        right: 8px;
        font-size: 9px;
        padding: 1px 6px;
    }
}
