/* ========================================
 *   UNIVERSAL STYLES & CSS VARIABLES
 *   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --accent: #10b981;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: rgba(30, 41, 59, 0.7);
    --bg-overlay: rgba(15, 23, 42, 0.8);
    --border-light: rgba(148, 163, 184, 0.2);

    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);

    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
 *   SCROLL SNAP SECTIONS
 *   ======================================== */

/* Removed all scroll-snap CSS - replaced with regular scrolling */

/* ========================================
 *   TEXT INPUT WITH TYPING ANIMATION
 *   ======================================== */

.input-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-animated {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(30, 41, 59, 0.5);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.input-animated::placeholder {
    color: var(--text-muted);
    animation: typingAnimation 3s infinite;
}

.input-animated:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

/* Typing animation for placeholder text */
@keyframes typingAnimation {
    0%,
    10% {
        content: "";
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Animated cursor effect in input */
.input-animated::after {
    content: "";
    position: absolute;
    height: 1.25rem;
    width: 2px;
    background: var(--primary);
    animation: cursorBlink 0.7s infinite;
}

@keyframes cursorBlink {
    0%,
    49% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}

/* Input label animation */
.input-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.input-wrapper:focus-within .input-label {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Success state animation */
.input-success {
    border-color: var(--success);
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Error state animation */
.input-error {
    border-color: var(--danger);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

/* ========================================
 *   TEXT ENTRANCE ANIMATIONS
 *   ======================================== */

/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.text-fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Fade In Down */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

/* Slide In From Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.text-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

/* Slide In From Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.text-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Bounce In */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.text-bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Jump and Land */
@keyframes jumpAndLand {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(0px);
    }
}

.text-jump-land {
    animation: jumpAndLand 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Flip In */
@keyframes flipInX {
    from {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

.text-flip-in {
    animation: flipInX 0.8s ease-out;
}

/* Rotate In */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-200deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

.text-rotate-in {
    animation: rotateIn 0.8s ease-out;
}

/* Zoom In */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.text-zoom-in {
    animation: zoomIn 0.8s ease-out;
}

/* Elastic In */
@keyframes elasticIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    55% {
        opacity: 1;
        transform: scale(1.1);
    }
    75% {
        transform: scale(0.98);
    }
    100% {
        transform: scale(1);
    }
}

.text-elastic-in {
    animation: elasticIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Roll In */
@keyframes rollIn {
    from {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

.text-roll-in {
    animation: rollIn 0.8s ease-out;
}

/* Swing In */
@keyframes swingIn {
    0% {
        opacity: 0;
        transform: rotateZ(45deg);
    }
    100% {
        opacity: 1;
        transform: rotateZ(0deg);
    }
}

.text-swing-in {
    animation: swingIn 0.8s ease-out;
    transform-origin: top center;
}

/* Light Speed In */
@keyframes lightSpeedIn {
    from {
        opacity: 0;
        transform: translateX(100%) skewX(-20deg);
    }
    60% {
        opacity: 1;
        transform: translateX(-10px) skewX(5deg);
    }
    80% {
        transform: translateX(5px) skewX(-3deg);
    }
    100% {
        transform: translateX(0) skewX(0deg);
    }
}

.text-light-speed-in {
    animation: lightSpeedIn 0.8s ease-out;
}

/* Wave Text Animation (for multi-character text) */
@keyframes wave {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.text-wave span {
    display: inline-block;
    animation: wave 0.6s ease-in-out infinite;
}

.text-wave span:nth-child(1) {
    animation-delay: 0s;
}
.text-wave span:nth-child(2) {
    animation-delay: 0.1s;
}
.text-wave span:nth-child(3) {
    animation-delay: 0.2s;
}
.text-wave span:nth-child(4) {
    animation-delay: 0.3s;
}
.text-wave span:nth-child(5) {
    animation-delay: 0.4s;
}
.text-wave span:nth-child(6) {
    animation-delay: 0.5s;
}
.text-wave span:nth-child(7) {
    animation-delay: 0.6s;
}
.text-wave span:nth-child(8) {
    animation-delay: 0.7s;
}
.text-wave span:nth-child(9) {
    animation-delay: 0.8s;
}

/* Stagger Text Animation (for paragraphs) */
.text-stagger-in {
    animation: fadeInUp 0.8s ease-out;
}

.text-stagger-in:nth-child(1) {
    animation-delay: 0s;
}
.text-stagger-in:nth-child(2) {
    animation-delay: 0.1s;
}
.text-stagger-in:nth-child(3) {
    animation-delay: 0.2s;
}
.text-stagger-in:nth-child(4) {
    animation-delay: 0.3s;
}
.text-stagger-in:nth-child(5) {
    animation-delay: 0.4s;
}
.text-stagger-in:nth-child(6) {
    animation-delay: 0.5s;
}

/* ========================================
 *   BUTTONS & INTERACTIONS
 *   ======================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: rgba(236, 72, 153, 0.2);
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn:active {
    transform: scale(0.98);
}

/* ========================================
 *   CARDS & CONTAINERS
 *   ======================================== */

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.card:hover {
    border-color: rgba(148, 163, 184, 0.4);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Add animation triggers on card hover */
.card:hover .demo-text {
    animation: none;
    animation-play-state: running !important;
}

/* ========================================
 *   HEADINGS
 *   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.875rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* ========================================
 *   CONTAINER
 *   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
 *   UTILITIES
 *   ======================================== */

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 0.5rem;
}
.mt-4 {
    margin-top: 1rem;
}
.mt-6 {
    margin-top: 1.5rem;
}
.mt-8 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-8 {
    margin-bottom: 2rem;
}

.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.gap-4 {
    gap: 1rem;
}
.gap-6 {
    gap: 1.5rem;
}

/* ========================================
 *   HERO SECTION
 *   ======================================== */

.hero {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-bottom: 1px solid var(--border-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 2rem;
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
 *   BUTTON VARIANTS
 *   ======================================== */

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.btn-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-success {
    background: var(--success);
    color: white;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.btn-danger {
    background: var(--danger);
    color: white;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.btn-warning {
    background: var(--warning);
    color: white;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: scale(0.98);
}

/* ========================================
 *   CARD VARIATIONS
 *   ======================================== */

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 2rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.card-content {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.card-feature {
    text-align: center;
    padding: 2.5rem 2rem;
}

/* ========================================
 *   BADGE STYLES
 *   ======================================== */

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.badge-primary {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary);
}

.badge-secondary {
    background: rgba(236, 72, 153, 0.2);
    color: var(--secondary);
}

.badge-success {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.badge-pulse {
    animation: pulse 2s infinite;
}

.badge-glow {
    box-shadow: 0 0 10px currentColor;
    animation: glow 2s infinite;
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 10px currentColor;
    }
    50% {
        box-shadow: 0 0 20px currentColor;
    }
}

/* ========================================
 *   ALERT STYLES
 *   ======================================== */

.alert {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    animation: slideInLeft 0.5s ease-out;
}

.alert-icon {
    flex-shrink: 0;
    font-size: 1.25rem;
}

.alert-content {
    flex: 1;
}

.alert-primary {
    border-left-color: var(--info);
    background: rgba(59, 130, 246, 0.05);
}

.alert-success {
    border-left-color: var(--success);
    background: rgba(16, 185, 129, 0.05);
}

.alert-warning {
    border-left-color: var(--warning);
    background: rgba(245, 158, 11, 0.05);
}

.alert-danger {
    border-left-color: var(--danger);
    background: rgba(239, 68, 68, 0.05);
}

/* ========================================
 *   FORM STYLES
 *   ======================================== */

.form-glass {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(30, 41, 59, 0.5);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox label {
    margin: 0;
    cursor: pointer;
}

/* ========================================
 *   PROGRESS BARS
 *   ======================================== */

.progress {
    width: 100%;
    height: 8px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-full);
    animation: slideInLeft 1s ease-out;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* ========================================
 *   SPINNER & LOADING INDICATORS
 *   ======================================== */

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(99, 102, 241, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-lg {
    width: 60px;
    height: 60px;
    border-width: 5px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.dot-spinner {
    display: flex;
    gap: 0.5rem;
}

.dot-spinner span {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 1.4s infinite;
}

.dot-spinner span:nth-child(1) {
    animation-delay: 0s;
}
.dot-spinner span:nth-child(2) {
    animation-delay: 0.2s;
}
.dot-spinner span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================
 *   TABS
 *   ======================================== */

.tabs {
    display: flex;
    border-bottom: 2px solid var(--border-light);
    margin-bottom: 2rem;
    gap: 0;
}

.tab-button {
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-button:hover {
    color: var(--text-primary);
}

.tab-button.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

/* ========================================
 *   PAGINATION
 *   ======================================== */

.pagination {
    display: flex;
    gap: 0.5rem;
}

.pagination-item {
    min-width: 40px;
    height: 40px;
    padding: 0.5rem;
    border: 1px solid var(--border-light);
    background: rgba(30, 41, 59, 0.5);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.pagination-item:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-item.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ========================================
 *   BREADCRUMBS
 *   ======================================== */

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.breadcrumb-item a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.breadcrumb-item:last-child {
    color: var(--text-muted);
}

.breadcrumb-separator {
    color: var(--text-muted);
    margin: 0 0.25rem;
}

/* ========================================
 *   TOOLTIPS
 *   ======================================== */

.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-0.5rem);
    background: rgba(15, 23, 42, 0.95);
    color: var(--text-primary);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    font-size: 0.875rem;
    border: 1px solid var(--border-light);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    z-index: 1000;
}

.tooltip:hover::before {
    opacity: 1;
}

/* ========================================
 *   GRID LAYOUTS
 *   ======================================== */

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (max-width: 768px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* ========================================
 *   ADDITIONAL ANIMATIONS
 *   ======================================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
