/* ============================================================
   MOMO TERMINAL — Landing Page Styles
   (index.php-specific styles; shared/pricing styles live in ann_style.scss)
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--blue-2);
  background: rgba(59,123,255,.08);
  border: 1px solid rgba(59,123,255,.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100%{opacity:1;} 50%{opacity:.35;} }

.hero p.intro {
  font-size: 15px;
  color: var(--text-dim);
  margin: 0 0 34px;
}
.hero p.intro a { color: var(--blue-2); font-weight: 600; border-bottom: 1px dotted rgba(126,200,255,.4); }
.hero p.intro a.gold { color: var(--gold-2); border-bottom-color: rgba(255,197,92,.4); }


.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid rgba(126,200,255,.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
  overflow: hidden;
}
.feature-item {
  flex: 1 1 0;
  min-width: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 22px 10px;
  border-right: 1px solid rgba(126,200,255,.1);
  transition: background .3s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(126,200,255,.06); }
.feature-item .ico {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 35% 30%, rgba(126,200,255,.25), rgba(59,123,255,.05));
  border: 1px solid rgba(126,200,255,.3);
  color: var(--blue-2);
}
.feature-item .ico svg { width: 20px; height: 20px; }
.feature-item span.label { font-size: 12.5px; color: var(--text-mid); font-weight: 600; line-height: 1.35; }

/* ---------- hero visual ---------- */
.hero-visual { position: relative; min-height: 560px; }

.infinity-wrap {
  position: absolute;
  top: -46px; right: -10px;
  width: 62%;
  z-index: 1;
  opacity: .95;
  animation: floatY 7s ease-in-out infinite;
  pointer-events: none;
}
.infinity-wrap img { width: 100%; height: auto; display: block; filter: drop-shadow(0 0 30px rgba(59,123,255,.25)); }
@keyframes floatY { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }

.dash-stack { position: relative; z-index: 3; margin-top: 150px; max-width: 345px; }

.terminal-card {
  background: linear-gradient(160deg, #0c1630, #080e20 70%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(0,0,0,.55), 0 0 60px rgba(59,123,255,.08) inset;
  padding: 16px 16px 18px;
  animation: floatY 8s ease-in-out infinite;
  animation-delay: -2s;
}
.terminal-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.terminal-brand { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--text-dim); }
.terminal-dots { display: flex; gap: 6px; }
.terminal-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15); }

.terminal-body { display: grid; grid-template-columns: 22px 1fr 96px; gap: 8px; }
.terminal-sidebar { display: flex; flex-direction: column; gap: 14px; align-items: center; padding-top: 6px; }
.terminal-sidebar .side-ico {
  width: 24px; height: 24px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  background: rgba(255,255,255,.03);
  transition: color .3s, background .3s;
}
.terminal-sidebar .side-ico.active { color: var(--blue-2); background: rgba(59,123,255,.15); box-shadow: 0 0 12px rgba(59,123,255,.3); }
.terminal-sidebar svg { width: 13px; height: 13px; }

.terminal-main {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(126,200,255,.08);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.tm-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.tm-label { font-size: 11px; color: var(--text-dim); font-weight: 600; letter-spacing: .5px; }
.tm-select {
  font-size: 12px; color: var(--text-mid);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 3px 8px; border-radius: 6px;
}
.tm-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.tm-price .val { font-size: 22px; font-weight: 700; font-variant-numeric: tabular-nums; }
.tm-price .chg { font-size: 13px; font-weight: 700; color: var(--green); }

.chart-wrap { height: 150px; position: relative; }
.chart-wrap svg { width: 100%; height: 100%; display: block; }

.terminal-right { display: flex; flex-direction: column; gap: 8px; }
.stat-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(126,200,255,.08);
  border-radius: var(--radius-sm);
  padding: 8px;
  text-align: center;
}
.stat-card .tm-label { display: block; margin-bottom: 6px; text-align: left; font-size: 9px; }
.gauge { width: 58px; height: 58px; margin: 0 auto 4px; position: relative; }
.gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge-bg { stroke: rgba(255,255,255,.08); }
.gauge-val { stroke: url(#gaugeGrad); stroke-linecap: round; transition: stroke-dashoffset 1.4s var(--ease); }
.gauge-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; }
.gauge-caption { font-size: 9.5px; font-weight: 700; color: var(--green); }

.sentiment-bars { display: flex; align-items: flex-end; gap: 2px; height: 28px; margin: 5px 0; }
.sentiment-bars i {
  flex: 1; border-radius: 2px;
  background: linear-gradient(180deg, var(--red), #ff9d6e);
}
.sentiment-bars i.bull { background: linear-gradient(180deg, #8de6ff, var(--green)); }
.sentiment-labels { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-dim); font-weight: 600; }
.sentiment-labels .bearish { color: var(--red); }
.sentiment-labels .bullish { color: var(--green); }

/* product cards floating beside terminal */
.product-float {
  position: absolute;
  right: 0;
  width: 260px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-float.pos1 { top: 20px; }

.product-card {
  background: linear-gradient(160deg, rgba(12,22,48,.9), rgba(8,14,32,.9));
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  animation: floatY 6.5s ease-in-out infinite;
}
.product-card:nth-child(2) { animation-delay: -1.4s; border-color: var(--border-gold); }
.product-card:nth-child(3) { animation-delay: -3s; }
.product-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 24px 50px rgba(59,123,255,.25); border-color: rgba(126,200,255,.5); }

.pc-ico {
  width: 40px; height: 40px; border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 35% 30%, rgba(126,200,255,.3), rgba(59,123,255,.05));
  border: 1px solid rgba(126,200,255,.35);
  color: var(--blue-2);
}
.product-card.gold .pc-ico {
  background: radial-gradient(circle at 35% 30%, rgba(255,217,138,.35), rgba(242,184,75,.05));
  border-color: rgba(255,197,92,.45);
  color: var(--gold-2);
}
.pc-ico svg { width: 19px; height: 19px; }
.pc-body h4 { margin: 0 0 4px; font-size: 15.5px; font-weight: 700; }
.pc-body p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--text-mid); }
.pc-arrow { margin-left: auto; flex-shrink: 0; align-self: center; color: var(--text-dim); transition: transform .3s, color .3s; }
.product-card:hover .pc-arrow { transform: translateX(4px); color: var(--blue-2); }
.pc-arrow svg { width: 15px; height: 15px; }

/* ---------- products section (mirrors the floating cards, standalone section) ---------- */

.product-panel {
  background: linear-gradient(160deg, rgba(12,22,48,.7), rgba(6,10,22,.7));
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.product-panel::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 20% -10%, rgba(59,123,255,.18), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.product-panel:hover { transform: translateY(-10px); border-color: rgba(126,200,255,.5); box-shadow: 0 26px 60px rgba(59,123,255,.2); }
.product-panel:hover::before { opacity: 1; }
.product-panel.gold:hover { border-color: rgba(255,197,92,.55); box-shadow: 0 26px 60px rgba(242,184,75,.18); }
.pp-ico {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 35% 30%, rgba(126,200,255,.3), rgba(59,123,255,.05));
  border: 1px solid rgba(126,200,255,.35);
  color: var(--blue-2);
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.product-panel.gold .pp-ico {
  background: radial-gradient(circle at 35% 30%, rgba(255,217,138,.35), rgba(242,184,75,.05));
  border-color: rgba(255,197,92,.45);
  color: var(--gold-2);
}
.pp-ico svg { width: 26px; height: 26px; }
.product-panel h3 { font-size: 21px; font-weight: 700; margin: 0 0 10px; position: relative; z-index: 1; }
.product-panel p { color: var(--text-mid); font-size: 14.5px; line-height: 1.7; margin: 0 0 20px; position: relative; z-index: 1; }
.pp-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--blue-2); position: relative; z-index: 1; }
.product-panel.gold .pp-link { color: var(--gold-2); }
.pp-link svg { width: 15px; height: 15px; transition: transform .3s; }
.product-panel:hover .pp-link svg { transform: translateX(5px); }

/* ---------- stats band ---------- */
.stats-band {
  border-top: 1px solid rgba(126,200,255,.14);
  border-bottom: 1px solid rgba(126,200,255,.14);
  background: linear-gradient(180deg, rgba(8,14,32,.6), rgba(5,9,20,.6));
  padding: 40px 0;
}
.stats-title { margin-bottom: 24px; }
.stats-list { margin: 0; }
.stat-block { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.stat-icowrap {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(126,200,255,.08); border: 1px solid rgba(126,200,255,.25);
  color: var(--blue-2); flex-shrink: 0;
}
.stat-block:nth-child(3) .stat-icowrap, .stat-block:nth-child(6) .stat-icowrap { color: var(--gold-2); background: rgba(255,197,92,.08); border-color: rgba(255,197,92,.3); }
.stat-icowrap svg { width: 20px; height: 20px; }
.stat-num { font-size: 22px; font-weight: 800; font-variant-numeric: tabular-nums; line-height: 1.1; }
.stat-cap { font-size: 12px; color: var(--text-dim); font-weight: 600; }


/* ---------- footer ---------- */
.momo-footer {
  padding: 50px 0 34px;
  border-top: 1px solid rgba(126,200,255,.1);
  color: var(--text-dim);
  font-size: 13.5px;
}
.momo-footer .foot-row { row-gap: 16px; }
.momo-footer .foot-brand { display: flex; align-items: center; gap: 10px; color: var(--text-mid); font-weight: 700; letter-spacing: 1px; }
.momo-footer .foot-brand-img { height: 22px; width: auto; display: block; }
.momo-footer .foot-links { display: flex; gap: 26px; }
.momo-footer .foot-links a:hover { color: var(--blue-2); }

/* ---------- responsive ---------- */
/* breakpoint: xl down (<= 1200px) */
@media (max-width: 1200px) {
  .dash-stack { max-width: 320px; }
  .product-float { width: 240px; }
}

/* breakpoint: lg down (<= 992px) — hero columns stack */
@media (max-width: 992px) {
  .hero-visual { min-height: unset; margin-top: 40px; }
  .infinity-wrap { position: static; width: 60%; margin: 0 auto 20px; display: block; }
  .dash-stack { margin-top: 0; max-width: 420px; margin-left: auto; margin-right: auto; }
  .product-float { position: static; width: 100%; max-width: 420px; margin: 20px auto 0; }
  .terminal-body { grid-template-columns: 1fr; }
  .terminal-sidebar { flex-direction: row; justify-content: center; }
  .stats-title { text-align: center; margin-bottom: 30px; }
  .stat-block { justify-content: center; }
}

/* breakpoint: md down (<= 767px) */
@media (max-width: 767px) {
  .feature-strip { flex-direction: column; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(126,200,255,.1); flex-direction: row; justify-content: flex-start; text-align: left; }
  .foot-row { text-align: center; justify-content: center !important; }
}

/* breakpoint: sm down (<= 576px) */
@media (max-width: 576px) {
  .dash-stack, .product-float { max-width: 100%; }
  .stat-icowrap { width: 36px; height: 36px; }
  .stat-num { font-size: 18px; }
}
