/* Cursor blink for the typed prompt */ .ai-prompt .cursor { display: inline-block; width: 2px; height: 1em; background: currentColor; vertical-align: text-bottom; margin-left: 1px; opacity: 0; animation: dr-blink 1s steps(2) infinite; } .ai-prompt.typing .cursor { opacity: 1; } @keyframes dr-blink { 50% { opacity: 0; } } .layout92_header-arrow-body { transform-origin: left center; transform: scaleX(0); } .layout92_header-arrow-icon { opacity: 0; transform: translateX(-6px); } /* Accessibility — disable motion when requested */ @media (prefers-reduced-motion: reduce) { .ai-prompt .cursor { animation: none; } .tabs6_component .layout92_header, .tabs6_component .layout92_l1, .tabs6_component .layout92_l2, .tabs6_component .layout92_l2_list-item, .tabs6_component .checkmark-rich-text2_component li, .tabs6_component .layout92_l3_frame-wrapper, .tabs6_component .layout92_header-arrow-body, .tabs6_component .layout92_header-arrow-icon { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }