/* ==========================================================================
   AI Growth Partner - Core Design System Entry Point
   ========================================================================== */

/* 1. Design Tokens and CSS Variables */
@import './variables.css';

/* 2. Base Typography & Fonts */
@import './typography.css';

/* 3. Layout Grid & Helpers */
@import './layout.css';

/* 4. UI Components */
@import './components.css';

/* 5. Page Sections */
@import './sections.css';

/* ==========================================================================
   Custom Project-Specific Overrides or Additions
   ========================================================================== */

/* Add specific animations or advanced styling below */

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}