/* ── Hero visual · hub futurista ── */
.hero-visual {
  position: relative;
  min-height: 400px;
  margin-bottom: 1.5rem;
}

.hero-visual__frame {
  position: relative;
  min-height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, #070f1e 0%, #040810 100%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45), 0 0 60px rgba(0, 212, 255, 0.06);
}

.hero-hub {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  height: 340px;
  margin: 1.25rem auto 0;
}

.hero-hub__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.12);
  pointer-events: none;
}

.hero-hub__ring--1 {
  width: 88%;
  height: 88%;
  animation: heroRingSpin 28s linear infinite;
}

.hero-hub__ring--2 {
  width: 68%;
  height: 68%;
  border-color: rgba(167, 139, 250, 0.18);
  animation: heroRingSpin 20s linear infinite reverse;
}

.hero-hub__ring--3 {
  width: 48%;
  height: 48%;
  border-style: dashed;
  animation: heroRingSpin 14s linear infinite;
}

@keyframes heroRingSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-hub__core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
  background: radial-gradient(circle at 35% 30%, rgba(0, 212, 255, 0.25), rgba(8, 16, 36, 0.95) 65%);
  border: 1px solid rgba(0, 212, 255, 0.45);
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.25), inset 0 0 30px rgba(0, 212, 255, 0.08);
  animation: heroCorePulse 3.5s ease-in-out infinite;
}

@keyframes heroCorePulse {
  0%, 100% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.2), inset 0 0 24px rgba(0, 212, 255, 0.06); }
  50% { box-shadow: 0 0 65px rgba(0, 212, 255, 0.38), inset 0 0 36px rgba(0, 212, 255, 0.12); }
}

.hero-hub__logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, #f0f7ff, #7dd3fc 50%, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.2rem;
}

.hero-hub__core strong {
  display: block;
  font-size: 0.62rem;
  line-height: 1.3;
  color: #e8f4ff;
  margin-bottom: 0.15rem;
}

.hero-hub__core span {
  font-size: 0.52rem;
  color: #8eb4d4;
  line-height: 1.25;
}

.hero-sat {
  position: absolute;
  z-index: 4;
  width: 118px;
  padding: 0.65rem 0.55rem;
  border-radius: 14px;
  text-align: center;
  background: rgba(6, 16, 32, 0.92);
  border: 1px solid rgba(0, 212, 255, 0.28);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  animation: heroSatFloat 4.5s ease-in-out infinite;
}

.hero-sat--web {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.hero-sat--auto {
  bottom: 8%;
  left: 2%;
  animation-delay: -1.5s;
}

.hero-sat--bot {
  bottom: 8%;
  right: 2%;
  animation-delay: -3s;
}

@keyframes heroSatFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.hero-sat--web {
  animation-name: heroSatFloatCenter;
}

@keyframes heroSatFloatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-7px); }
}

.hero-sat__icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 0.35rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.12));
  border: 1px solid rgba(0, 212, 255, 0.25);
}

.hero-sat__icon svg {
  width: 18px;
  height: 18px;
}

.hero-sat strong {
  display: block;
  font-size: 0.68rem;
  color: #f0f7ff;
  line-height: 1.25;
}

.hero-sat small {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.55rem;
  color: #8eb4d4;
  line-height: 1.3;
}

.hero-hub__links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-link-line {
  stroke: rgba(0, 212, 255, 0.15);
  stroke-width: 1;
}

.hero-link-pulse {
  fill: var(--primary);
  filter: drop-shadow(0 0 6px var(--primary));
}

.hero-link-pulse--1 { animation: heroPulsePath1 2.4s ease-in-out infinite; }
.hero-link-pulse--2 { animation: heroPulsePath2 2.4s ease-in-out infinite 0.8s; }
.hero-link-pulse--3 { animation: heroPulsePath3 2.4s ease-in-out infinite 1.6s; }

@keyframes heroPulsePath1 {
  0%, 100% { cy: 200; opacity: 0.3; }
  50% { cy: 100; opacity: 1; }
}

@keyframes heroPulsePath2 {
  0%, 100% { cx: 200; cy: 200; opacity: 0.3; }
  50% { cx: 100; cy: 280; opacity: 1; }
}

@keyframes heroPulsePath3 {
  0%, 100% { cx: 200; cy: 200; opacity: 0.3; }
  50% { cx: 300; cy: 280; opacity: 1; }
}

.hero-status {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding: 0.75rem 1rem 1rem;
  font-size: 0.72rem;
  color: #9ec9e8;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.hero-status strong {
  color: var(--primary);
}

.hero-status__live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #5eead4;
  font-weight: 600;
}

.hero-status__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
  animation: mgBlink 1.4s step-end infinite;
  font-style: normal;
}

.hero-visual .hero-tech-stack {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  margin-top: 0.85rem;
}

@media (max-width: 960px) {
  .hero-visual {
    min-height: 0;
    margin-bottom: 0.75rem;
  }

  .hero-visual__frame {
    min-height: 320px;
  }

  .hero-hub {
    height: 300px;
    margin-top: 1rem;
  }

  .hero-sat {
    width: 100px;
    padding: 0.5rem 0.4rem;
  }

  .hero-sat strong {
    font-size: 0.62rem;
  }

  .hero-hub__core {
    width: 128px;
    height: 128px;
  }
}

@media (max-width: 720px) {
  .hero-visual__frame {
    min-height: 290px;
  }

  .hero-hub {
    height: 270px;
    width: min(100%, 320px);
  }

  .hero-sat {
    width: 92px;
  }

  .hero-sat small {
    font-size: 0.5rem;
  }

  .hero-status {
    font-size: 0.65rem;
    gap: 0.35rem 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-hub__ring,
  .hero-hub__core,
  .hero-sat,
  .hero-link-pulse,
  .hero-status__live i {
    animation: none !important;
  }
}

/* ── Productos MG · showcase futurista ── */
.mg-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.mg-showcase-nav-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
}

.mg-showcase-nav-wrap::before,
.mg-showcase-nav-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.35rem;
  width: 28px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mg-showcase-nav-wrap::before {
  left: 2.4rem;
  background: linear-gradient(90deg, rgba(4, 10, 22, 0.95), transparent);
}

.mg-showcase-nav-wrap::after {
  right: 2.4rem;
  background: linear-gradient(270deg, rgba(4, 10, 22, 0.95), transparent);
}

.mg-showcase-nav-wrap.can-scroll-left::before,
.mg-showcase-nav-wrap.can-scroll-right::after {
  opacity: 1;
}

.mg-showcase-nav-btn {
  display: none;
  flex: 0 0 2.1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 12px;
  background: rgba(6, 14, 28, 0.92);
  color: var(--primary);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.12);
}

.mg-showcase-nav-btn svg {
  width: 18px;
  height: 18px;
}

.mg-showcase-nav-btn:hover:not(:disabled) {
  border-color: rgba(0, 212, 255, 0.6);
  background: rgba(0, 212, 255, 0.1);
}

.mg-showcase-nav-btn:disabled {
  opacity: 0.28;
  cursor: default;
  box-shadow: none;
}

.mg-showcase-nav-hint {
  display: none;
  margin: -0.35rem 0 0;
  text-align: center;
  font-size: 0.72rem;
  color: #7daed0;
  letter-spacing: 0.02em;
}

.mg-showcase-nav {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  overflow-x: auto;
  flex: 1;
  min-width: 0;
  padding-bottom: 0.35rem;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.mg-showcase-nav::-webkit-scrollbar {
  display: none;
}

.mg-showcase-tab {
  scroll-snap-align: start;
  text-align: left;
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 14px;
  background: rgba(6, 14, 28, 0.75);
  padding: 0.8rem 0.9rem;
  min-width: 148px;
  flex: 0 0 auto;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.mg-showcase-tab:hover {
  border-color: rgba(0, 212, 255, 0.35);
  transform: translateY(-2px);
}

.mg-showcase-tab.active {
  border-color: rgba(0, 212, 255, 0.55);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.14), rgba(124, 58, 237, 0.08));
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.15), inset 0 0 0 1px rgba(0, 212, 255, 0.2);
}

.mg-showcase-tab[data-panel="trading"].active {
  border-color: rgba(167, 139, 250, 0.55);
  box-shadow: 0 0 28px rgba(167, 139, 250, 0.18), inset 0 0 0 1px rgba(167, 139, 250, 0.25);
}

.mg-showcase-tab[data-panel="academia"].active {
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 0 28px rgba(52, 211, 153, 0.15), inset 0 0 0 1px rgba(52, 211, 153, 0.22);
}

.mg-showcase-tab[data-panel="academia"] .mg-tab-icon {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.22), rgba(0, 212, 255, 0.08));
  border-color: rgba(52, 211, 153, 0.3);
  color: #6ee7b7;
}

.mg-showcase-tab[data-panel="hoteleria"].active {
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 0 28px rgba(251, 191, 36, 0.14), inset 0 0 0 1px rgba(251, 191, 36, 0.22);
}

.mg-showcase-tab[data-panel="hoteleria"] .mg-tab-icon {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.22), rgba(245, 158, 11, 0.08));
  border-color: rgba(251, 191, 36, 0.3);
  color: #fcd34d;
}

.mg-showcase-tab[data-panel="profesionales"].active {
  border-color: rgba(129, 140, 248, 0.55);
  box-shadow: 0 0 28px rgba(129, 140, 248, 0.16), inset 0 0 0 1px rgba(129, 140, 248, 0.24);
}

.mg-showcase-tab[data-panel="profesionales"] .mg-tab-icon {
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.24), rgba(99, 102, 241, 0.08));
  border-color: rgba(129, 140, 248, 0.32);
  color: #a5b4fc;
}

.mg-showcase-tab[data-panel="rubros"].active {
  border-color: rgba(244, 114, 182, 0.52);
  box-shadow: 0 0 28px rgba(244, 114, 182, 0.15), inset 0 0 0 1px rgba(244, 114, 182, 0.22);
}

.mg-showcase-tab[data-panel="rubros"] .mg-tab-icon {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.24), rgba(251, 146, 60, 0.1));
  border-color: rgba(244, 114, 182, 0.32);
  color: #f9a8d4;
}

.mg-tab-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 255, 0.08));
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--primary);
}

.mg-showcase-tab[data-panel="trading"] .mg-tab-icon {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.22), rgba(0, 212, 255, 0.08));
  border-color: rgba(167, 139, 250, 0.3);
  color: #c4b5fd;
}

.mg-tab-icon svg {
  width: 18px;
  height: 18px;
}

.mg-showcase-tab strong {
  display: block;
  font-size: 0.82rem;
  color: #f0f7ff;
  margin-bottom: 0.15rem;
  line-height: 1.25;
}

.mg-showcase-tab p {
  margin: 0;
  font-size: 0.68rem;
  color: #8eb4d4;
  line-height: 1.35;
}

.mg-showcase-tab[data-panel="academia"].active {
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 0 24px rgba(52, 211, 153, 0.15);
}

.mg-showcase-tab[data-panel="hoteleria"].active {
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 0 24px rgba(251, 191, 36, 0.12);
}

.mg-showcase-tab[data-panel="emprende"].active {
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.15);
}

.mg-showcase-stage {
  position: relative;
  min-height: 420px;
}

.mg-showcase-panel {
  display: none;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.25rem;
  align-items: stretch;
  opacity: 0;
  transform: translateY(12px);
}

.mg-showcase-panel.active {
  display: grid;
  opacity: 1;
  transform: none;
  animation: mgShowcaseIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes mgShowcaseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.mg-showcase-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.1rem;
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(8, 18, 36, 0.92), rgba(4, 10, 22, 0.95));
}

.mg-showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5eead4;
  background: rgba(94, 234, 212, 0.1);
  border: 1px solid rgba(94, 234, 212, 0.28);
}

.mg-showcase-info h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  line-height: 1.2;
  color: #f8fbff;
}

.mg-showcase-lead {
  margin: 0 0 1rem;
  color: #9ec9e8;
  font-size: 0.92rem;
  line-height: 1.6;
}

.mg-showcase-list {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.mg-showcase-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.86rem;
  color: #c8dff0;
  line-height: 1.45;
}

.mg-showcase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

.mg-showcase-result {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  font-size: 0.82rem;
  color: #d7ecfa;
}

.mg-showcase-result strong {
  color: var(--primary);
  font-size: 1.05rem;
}

.mg-showcase-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.85rem;
}

.mg-showcase-stack span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  color: #8eb4d4;
  border: 1px solid rgba(0, 212, 255, 0.15);
  background: rgba(0, 212, 255, 0.05);
}

.mg-showcase-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.mg-showcase-audience span {
  font-size: 0.68rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  color: #b8d4ea;
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.14);
}

.mg-showcase-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
  padding: 0.62rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #041018;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), #38bdf8);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mg-showcase-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.45);
}

/* Visuales por industria */
.mg-academy-scene {
  position: relative;
  z-index: 2;
  min-height: 340px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.mg-academy-card {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(8, 20, 36, 0.9);
  border: 1px solid rgba(52, 211, 153, 0.25);
  animation: mgCardSlide 0.6s ease forwards;
  opacity: 0;
}

.mg-academy-card:nth-child(1) { animation-delay: 0.1s; }
.mg-academy-card:nth-child(2) { animation-delay: 0.35s; }
.mg-academy-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes mgCardSlide {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: none; }
}

.mg-academy-card header {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #d7ecfa;
  margin-bottom: 0.45rem;
}

.mg-academy-card header em {
  font-style: normal;
  color: #34d399;
  font-size: 0.62rem;
}

.mg-progress-track {
  height: 6px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.mg-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, #34d399, #00d4ff);
  animation: mgProgressGrow 1.4s ease forwards 0.5s;
}

@keyframes mgProgressGrow {
  to { width: var(--prog, 70%); }
}

.mg-academy-badge {
  align-self: center;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  font-size: 0.72rem;
  color: #5eead4;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.mg-academy-badge strong {
  color: #e8fff6;
  font-size: 1rem;
}

.mg-hotel-scene {
  position: relative;
  z-index: 2;
  min-height: 340px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.mg-hotel-cal {
  width: min(100%, 280px);
  padding: 0.85rem;
  border-radius: 14px;
  background: rgba(8, 18, 32, 0.92);
  border: 1px solid rgba(251, 191, 36, 0.28);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.08);
}

.mg-hotel-cal__head {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #fbbf24;
  margin-bottom: 0.65rem;
  font-weight: 600;
}

.mg-hotel-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.28rem;
}

.mg-hotel-day {
  aspect-ratio: 1;
  border-radius: 6px;
  font-size: 0.55rem;
  display: grid;
  place-items: center;
  color: #7da4c7;
  background: rgba(0, 0, 0, 0.25);
}

.mg-hotel-day.is-booked {
  color: #1a1408;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
  animation: mgBookPop 0.5s ease forwards;
  animation-delay: calc(var(--d, 0) * 0.08s);
  opacity: 0;
}

@keyframes mgBookPop {
  to { opacity: 1; transform: scale(1); }
  from { opacity: 0; transform: scale(0.7); }
}

.mg-hotel-confirm {
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  font-size: 0.68rem;
  color: #fde68a;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
  animation: mgSignalPop 0.5s ease forwards 1s;
  opacity: 0;
}

.mg-launch-scene {
  position: relative;
  z-index: 2;
  min-height: 340px;
  padding: 1.5rem;
  display: grid;
  place-items: center;
}

.mg-launch-card {
  width: min(100%, 300px);
  padding: 1rem;
  border-radius: 16px;
  text-align: center;
  background: rgba(8, 18, 36, 0.92);
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.12);
  animation: mgHoloFloat 5s ease-in-out infinite;
}

.mg-launch-card h4 {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: #e8f4ff;
}

.mg-launch-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.mg-launch-metric {
  padding: 0.45rem 0.3rem;
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.12);
}

.mg-launch-metric strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary);
}

.mg-launch-metric small {
  font-size: 0.5rem;
  color: #8eb4d4;
}

.mg-launch-spark {
  height: 48px;
  margin-top: 0.65rem;
}

.mg-launch-spark svg {
  width: 100%;
  height: 100%;
}

.mg-launch-line {
  fill: none;
  stroke: #38bdf8;
  stroke-width: 2;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: mgDrawLine 2s ease forwards 0.3s;
}

.mg-pro-scene {
  position: relative;
  z-index: 2;
  min-height: 340px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.mg-pro-card {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(8, 18, 36, 0.92);
  border: 1px solid rgba(129, 140, 248, 0.28);
  animation: mgCardSlide 0.6s ease forwards;
  opacity: 0;
}

.mg-pro-card:nth-child(1) { animation-delay: 0.1s; }
.mg-pro-card:nth-child(2) { animation-delay: 0.35s; }
.mg-pro-card:nth-child(3) { animation-delay: 0.6s; }

.mg-pro-card header {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #d7ecfa;
  margin-bottom: 0.35rem;
}

.mg-pro-card header em {
  font-style: normal;
  color: #a5b4fc;
  font-size: 0.62rem;
}

.mg-pro-card p {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  color: #b8d4ea;
}

.mg-pro-pill {
  display: inline-block;
  font-size: 0.58rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  color: #fde68a;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.mg-pro-pill--ok {
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.3);
}

.mg-pro-stat {
  color: var(--primary);
  font-size: 1.1rem;
}

.mg-rubro-scene {
  position: relative;
  z-index: 2;
  min-height: 340px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.mg-rubro-card {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(8, 18, 36, 0.92);
  border: 1px solid rgba(244, 114, 182, 0.28);
  animation: mgCardSlide 0.6s ease forwards;
  opacity: 0;
}

.mg-rubro-card:nth-child(1) { animation-delay: 0.1s; }
.mg-rubro-card:nth-child(2) { animation-delay: 0.35s; }
.mg-rubro-card:nth-child(3) { animation-delay: 0.6s; }

.mg-rubro-card header {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #d7ecfa;
  margin-bottom: 0.35rem;
}

.mg-rubro-card header em {
  font-style: normal;
  color: #f9a8d4;
  font-size: 0.62rem;
}

.mg-rubro-card p {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  color: #b8d4ea;
}

.mg-rubro-pill {
  display: inline-block;
  font-size: 0.58rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  color: #fde68a;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.mg-rubro-pill--ok {
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.3);
}

.mg-rubro-stat {
  color: #f9a8d4;
  font-size: 1.1rem;
}

/* ── Visual stage ── */
.mg-visual {
  position: relative;
  min-height: 380px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.22);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #060d1a 0%, #040810 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 80px rgba(0, 212, 255, 0.04);
}

.mg-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 78%);
  animation: mgGridDrift 18s linear infinite;
}

@keyframes mgGridDrift {
  from { transform: perspective(400px) rotateX(58deg) translateY(0); }
  to { transform: perspective(400px) rotateX(58deg) translateY(28px); }
}

.mg-visual-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  animation: mgGlowPulse 4s ease-in-out infinite;
}

.mg-visual-glow--cyan {
  top: 15%;
  left: 20%;
  background: rgba(0, 212, 255, 0.35);
}

.mg-visual-glow--violet {
  bottom: 10%;
  right: 15%;
  background: rgba(124, 58, 237, 0.28);
  animation-delay: -2s;
}

@keyframes mgGlowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

.mg-visual-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.8), transparent);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  animation: mgScanLine 3.5s ease-in-out infinite;
  z-index: 4;
  pointer-events: none;
}

@keyframes mgScanLine {
  0%, 100% { top: 12%; opacity: 0; }
  10% { opacity: 1; }
  50% { top: 82%; opacity: 1; }
  60% { opacity: 0; }
}

.mg-visual-orbit {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 78%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
  animation: mgOrbitSpin 24s linear infinite;
}

.mg-visual-orbit::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 16px var(--primary);
}

@keyframes mgOrbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Dashboard visual */
.mg-dash-scene {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 380px;
  padding: 1.5rem 1.25rem;
  display: grid;
  place-items: center;
}

.mg-dash-holo {
  position: relative;
  width: min(100%, 340px);
  padding: 1rem;
  border-radius: 16px;
  background: rgba(8, 20, 40, 0.82);
  border: 1px solid rgba(0, 212, 255, 0.3);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.12);
  animation: mgHoloFloat 5s ease-in-out infinite;
}

@keyframes mgHoloFloat {
  0%, 100% { transform: translateY(0) rotateX(2deg); }
  50% { transform: translateY(-8px) rotateX(0deg); }
}

.mg-dash-holo__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  color: #8eb4d4;
}

.mg-dash-live {
  color: #34d399;
  animation: mgBlink 1.4s step-end infinite;
}

@keyframes mgBlink {
  50% { opacity: 0.4; }
}

.mg-dash-chart {
  height: 90px;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.mg-dash-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mg-dash-chart .mg-chart-line {
  fill: none;
  stroke: #00d4ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: mgDrawLine 2.2s ease forwards 0.3s;
}

.mg-dash-chart .mg-chart-area {
  opacity: 0;
  animation: mgFadeArea 1s ease forwards 1.2s;
}

@keyframes mgDrawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes mgFadeArea {
  to { opacity: 1; }
}

.mg-dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.mg-dash-kpi {
  padding: 0.45rem 0.4rem;
  border-radius: 8px;
  text-align: center;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.12);
}

.mg-dash-kpi small {
  display: block;
  font-size: 0.52rem;
  color: #7da4c7;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mg-dash-kpi strong {
  display: block;
  font-size: 0.95rem;
  color: #e8f4ff;
  margin-top: 0.15rem;
}

.mg-float-chip {
  position: absolute;
  padding: 0.4rem 0.65rem;
  border-radius: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  color: #c8e4f8;
  background: rgba(6, 16, 32, 0.9);
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  animation: mgChipFloat 4s ease-in-out infinite;
}

.mg-float-chip--1 { top: 18%; right: 8%; animation-delay: -1s; }
.mg-float-chip--2 { bottom: 22%; left: 6%; animation-delay: -2.5s; }

@keyframes mgChipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Automation visual */
.mg-auto-scene {
  position: relative;
  z-index: 2;
  min-height: 380px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.mg-auto-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.35rem;
}

.mg-auto-node {
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: 14px;
  background: rgba(8, 20, 40, 0.85);
  border: 1px solid rgba(0, 212, 255, 0.22);
  animation: mgNodePulse 3s ease-in-out infinite;
}

.mg-auto-node:nth-child(1) { animation-delay: 0s; }
.mg-auto-node:nth-child(3) { animation-delay: 0.4s; }
.mg-auto-node:nth-child(5) { animation-delay: 0.8s; }

.mg-auto-node--core {
  border-color: rgba(94, 234, 212, 0.45);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
  animation: mgCorePulse 2s ease-in-out infinite;
}

@keyframes mgNodePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(0, 212, 255, 0); }
  50% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.2); }
}

@keyframes mgCorePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 212, 255, 0.15); }
  50% { transform: scale(1.04); box-shadow: 0 0 36px rgba(94, 234, 212, 0.35); }
}

.mg-auto-node__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(124, 58, 237, 0.15));
  color: var(--primary);
}

.mg-auto-node--core .mg-auto-node__icon {
  width: 52px;
  height: 52px;
  animation: mgCoreSpin 8s linear infinite;
}

@keyframes mgCoreSpin {
  to { transform: rotate(360deg); }
}

.mg-auto-node span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #d7ecfa;
}

.mg-auto-node small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.55rem;
  color: #7da4c7;
}

.mg-auto-link {
  position: relative;
  width: 36px;
  height: 3px;
  background: rgba(0, 212, 255, 0.2);
  border-radius: 99px;
  overflow: visible;
}

.mg-auto-packet {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
  transform: translateY(-50%);
  animation: mgPacketMove 1.8s ease-in-out infinite;
}

.mg-auto-link:nth-of-type(2) .mg-auto-packet { animation-delay: 0s; }
.mg-auto-link:nth-of-type(4) .mg-auto-packet { animation-delay: 0.9s; }

@keyframes mgPacketMove {
  0% { left: 0; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: calc(100% - 8px); opacity: 0; }
}

.mg-auto-log {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  line-height: 1.7;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 212, 255, 0.12);
  color: #8eb4d4;
}

.mg-auto-log .ok { color: #5eead4; }
.mg-auto-log .hi { color: var(--primary); }

.mg-auto-log-line {
  opacity: 0;
  animation: mgLogLine 0.4s ease forwards;
}

.mg-auto-log-line:nth-child(1) { animation-delay: 0.2s; }
.mg-auto-log-line:nth-child(2) { animation-delay: 0.7s; }
.mg-auto-log-line:nth-child(3) { animation-delay: 1.2s; }
.mg-auto-log-line:nth-child(4) { animation-delay: 1.7s; }

@keyframes mgLogLine {
  to { opacity: 1; }
}

/* Bot / trading visual */
.mg-bot-scene {
  position: relative;
  z-index: 2;
  min-height: 380px;
  padding: 1.5rem;
  display: grid;
  place-items: center;
}

.mg-bot-stage {
  position: relative;
  width: min(100%, 360px);
}

.mg-bot-radar {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.2);
  pointer-events: none;
}

.mg-bot-radar::before,
.mg-bot-radar::after {
  content: "";
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.12);
}

.mg-bot-radar::after {
  inset: 30%;
}

.mg-bot-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(167, 139, 250, 0.25) 40deg, transparent 80deg);
  animation: mgRadarSweep 3s linear infinite;
}

@keyframes mgRadarSweep {
  to { transform: rotate(360deg); }
}

.mg-bot-chart-wrap {
  position: relative;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(8, 16, 32, 0.9);
  border: 1px solid rgba(167, 139, 250, 0.28);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
}

.mg-bot-chart-wrap header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  color: #8eb4d4;
}

.mg-bot-chart {
  height: 120px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.mg-bot-chart svg {
  width: 100%;
  height: 100%;
}

.mg-bot-line {
  fill: none;
  stroke: url(#mgBotGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: mgDrawLine 2.5s ease forwards 0.2s;
}

.mg-bot-signal {
  position: absolute;
  top: 28%;
  right: 12%;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  font-weight: 700;
  color: #34d399;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.4);
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.25);
  animation: mgSignalPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards 2s;
  opacity: 0;
  transform: scale(0.8);
}

@keyframes mgSignalPop {
  to { opacity: 1; transform: scale(1); }
}

.mg-bot-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.mg-bot-metric {
  text-align: center;
  padding: 0.4rem;
  border-radius: 8px;
  background: rgba(167, 139, 250, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.15);
}

.mg-bot-metric strong {
  display: block;
  font-size: 0.82rem;
  color: #e8deff;
}

.mg-bot-metric small {
  font-size: 0.5rem;
  color: #9b8ec4;
}

@media (prefers-reduced-motion: reduce) {
  .mg-visual-grid,
  .mg-visual-scan,
  .mg-visual-orbit,
  .mg-dash-holo,
  .mg-float-chip,
  .mg-auto-packet,
  .mg-auto-node,
  .mg-auto-node--core .mg-auto-node__icon,
  .mg-bot-sweep,
  .mg-bot-signal,
  .mg-dash-chart .mg-chart-line,
  .mg-bot-line,
  .mg-auto-log-line,
  .mg-academy-card,
  .mg-progress-fill,
  .mg-hotel-day.is-booked,
  .mg-hotel-confirm,
  .mg-launch-line,
  .mg-launch-card,
  .mg-pro-card,
  .mg-rubro-card {
    animation: none !important;
  }

  .mg-dash-chart .mg-chart-line,
  .mg-bot-line,
  .mg-launch-line {
    stroke-dashoffset: 0;
  }

  .mg-dash-chart .mg-chart-area,
  .mg-auto-log-line,
  .mg-bot-signal,
  .mg-academy-card,
  .mg-hotel-day.is-booked,
  .mg-hotel-confirm,
  .mg-progress-fill {
    opacity: 1;
    width: var(--prog, 70%);
    transform: none;
  }

  .mg-pro-card,
  .mg-rubro-card {
    opacity: 1;
    transform: none;
  }
}

/* Mobile */
@media (max-width: 960px) {
  .mg-showcase {
    grid-template-columns: 1fr;
  }

  .mg-showcase-nav-btn {
    display: inline-flex;
  }

  .mg-showcase-nav-hint {
    display: block;
  }

  .mg-showcase-nav-hint[hidden] {
    display: none;
  }

  .mg-showcase-nav-wrap.has-overflow .mg-showcase-nav-btn--next:not(:disabled) {
    animation: mgNavNudge 2.2s ease-in-out infinite;
  }

  @keyframes mgNavNudge {
    0%, 100% { box-shadow: 0 0 18px rgba(0, 212, 255, 0.12); }
    50% { box-shadow: 0 0 28px rgba(0, 212, 255, 0.35); transform: translateX(1px); }
  }

  .mg-showcase-nav {
    flex-direction: row;
    overflow-x: auto;
    position: static;
    gap: 0.45rem;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }

  .mg-showcase-nav::-webkit-scrollbar {
    display: none;
  }

  .mg-showcase-tab {
    min-width: 118px;
    flex-shrink: 0;
    padding: 0.55rem 0.65rem;
  }

  .mg-showcase-tab strong {
    font-size: 0.78rem;
  }

  .mg-tab-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.3rem;
  }

  .mg-tab-icon svg {
    width: 15px;
    height: 15px;
  }

  .mg-showcase-tab:hover {
    transform: none;
  }

  .mg-showcase-panel.active {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .mg-showcase-info {
    order: 1;
  }

  .mg-visual {
    order: 2;
  }

  .mg-showcase-stage {
    min-height: 0;
  }

  .mg-showcase {
    gap: 0.75rem;
  }

  .mg-showcase-nav-hint {
    margin: -0.15rem 0 0;
    font-size: 0.66rem;
  }

  .mg-showcase-info h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }

  .mg-showcase-lead {
    font-size: 0.84rem;
    margin-bottom: 0.65rem;
    line-height: 1.45;
  }

  .mg-showcase-audience {
    margin-bottom: 0.55rem;
    gap: 0.28rem;
  }

  .mg-showcase-audience span {
    font-size: 0.62rem;
    padding: 0.22rem 0.45rem;
  }

  .mg-showcase-list {
    gap: 0.38rem;
    margin-bottom: 0.7rem;
  }

  .mg-showcase-list li {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .mg-showcase-result {
    padding: 0.5rem 0.65rem;
    font-size: 0.76rem;
    margin-bottom: 0.15rem;
  }

  .mg-showcase-cta {
    padding: 0.52rem 0.9rem;
    font-size: 0.78rem;
    margin-top: 0.15rem;
  }

  .mg-showcase-info {
    padding: 0.85rem 0.9rem;
  }

  .mg-visual {
    min-height: 200px;
  }

  .mg-auto-flow {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .mg-auto-link {
    width: 3px;
    height: 24px;
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .mg-auto-packet {
    animation: mgPacketMoveV 1.8s ease-in-out infinite;
  }

  @keyframes mgPacketMoveV {
    0% { top: 0; left: 50%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { top: calc(100% - 8px); left: 50%; opacity: 0; }
  }
}

@media (max-width: 720px) {
  .mg-showcase-tab {
    min-width: 108px;
    padding: 0.5rem 0.55rem;
  }

  .mg-showcase-tab p {
    display: none;
  }

  .mg-showcase-tab strong {
    font-size: 0.72rem;
  }

  .mg-visual {
    min-height: 175px;
  }

  .mg-dash-scene,
  .mg-auto-scene,
  .mg-bot-scene,
  .mg-academy-scene,
  .mg-hotel-scene,
  .mg-pro-scene,
  .mg-rubro-scene,
  .mg-launch-scene {
    min-height: 175px;
    padding: 0.85rem 0.75rem;
  }

  .mg-showcase-tag {
    font-size: 0.56rem;
    margin-bottom: 0.45rem;
    padding: 0.22rem 0.5rem;
  }

  .mg-showcase-info h3 {
    font-size: 0.98rem;
  }

  .mg-showcase-lead {
    font-size: 0.8rem;
  }

  .mg-showcase-list li {
    font-size: 0.75rem;
  }

  .mg-showcase-nav-btn {
    flex: 0 0 1.75rem;
  }

  .mg-showcase-nav-btn svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 480px) {
  .mg-visual {
    min-height: 155px;
  }

  .mg-dash-scene,
  .mg-auto-scene,
  .mg-bot-scene,
  .mg-academy-scene,
  .mg-hotel-scene,
  .mg-pro-scene,
  .mg-rubro-scene,
  .mg-launch-scene {
    min-height: 155px;
    padding: 0.65rem 0.6rem;
  }

  .mg-showcase-tab {
    min-width: 96px;
  }

  .mg-academy-card,
  .mg-pro-card,
  .mg-rubro-card {
    padding: 0.55rem 0.6rem;
  }

  .mg-academy-card header,
  .mg-pro-card header,
  .mg-rubro-card header {
    font-size: 0.64rem;
  }

  .mg-float-chip {
    display: none;
  }
}
