/* Hero Section Styles */

.hero {
    padding: 0;
    display: flex;
    align-items: center;
    position: fixed;
    overflow: hidden;
    height: 100vh;
    min-height: 100vh;
    transition: var(--section-transition);
    will-change: opacity, transform, filter;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Blob Background Elements */
.blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.75;
    transition: var(--transition);
}

.blob-1 {
    width: 500px;
    height: 500px;
    background-color: rgba(59, 130, 246, 0.32);
    top: -250px;
    left: -100px;
    animation: blob-move-1 25s infinite alternate cubic-bezier(0.445, 0.05, 0.55, 0.95),
    blob-color-1 12s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
    blob-pulse-1 8s infinite ease-in-out;
}

body.dark-mode .blob-1 {
    background-color: rgba(96, 165, 250, 0.28);
    animation: blob-move-1 25s infinite alternate cubic-bezier(0.445, 0.05, 0.55, 0.95),
    blob-color-1-dark 12s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
    blob-pulse-1 8s infinite ease-in-out;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background-color: rgba(20, 184, 166, 0.35);
    bottom: -100px;
    right: -50px;
    animation: blob-move-2 20s infinite alternate cubic-bezier(0.25, 0.46, 0.45, 0.94),
    blob-color-2 15s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
    blob-pulse-2 10s infinite ease-in-out;
}

body.dark-mode .blob-2 {
    background-color: rgba(45, 212, 191, 0.32);
    animation: blob-move-2 20s infinite alternate cubic-bezier(0.25, 0.46, 0.45, 0.94),
    blob-color-2-dark 15s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
    blob-pulse-2 10s infinite ease-in-out;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background-color: rgba(139, 92, 246, 0.28);
    bottom: -200px;
    left: 30%;
    animation: blob-move-3 30s infinite alternate cubic-bezier(0.55, 0.06, 0.68, 0.19),
    blob-color-3 18s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
    blob-pulse-3 12s infinite ease-in-out;
}

body.dark-mode .blob-3 {
    background-color: rgba(167, 139, 250, 0.25);
    animation: blob-move-3 30s infinite alternate cubic-bezier(0.55, 0.06, 0.68, 0.19),
    blob-color-3-dark 18s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
    blob-pulse-3 12s infinite ease-in-out;
}

.blob-4 {
    width: 450px;
    height: 450px;
    background-color: rgba(251, 146, 60, 0.24);
    top: -250px;
    left: 75%;
    transform: translateX(-50%);
    animation: blob-move-4 28s infinite alternate cubic-bezier(0.175, 0.885, 0.32, 1.275),
    blob-color-4 14s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
    blob-pulse-4 9s infinite ease-in-out;
    filter: blur(35px);
    box-shadow: 0 0 40px rgba(251, 146, 60, 0.15);
    z-index: 0;
}

body.dark-mode .blob-4 {
    background-color: rgba(252, 211, 77, 0.22);
    box-shadow: 0 0 60px rgba(252, 211, 77, 0.18);
    animation: blob-move-4 28s infinite alternate cubic-bezier(0.175, 0.885, 0.32, 1.275),
    blob-color-4-dark 14s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
    blob-pulse-4 9s infinite ease-in-out;
}

.dot-pattern {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.6;
}

body.dark-mode .dot-pattern {
    background-image: radial-gradient(circle, rgba(96, 165, 250, 0.12) 1px, transparent 1px);
}

.circle-outline {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 3px solid rgba(20, 184, 166, 0.4);
    border-radius: 42% 58% 30% 70% / 60% 40% 65% 35%;
    right: -190px;
    bottom: 15%;
    animation: blob-morph-3 22s linear infinite alternate,
    blob-float-3 18s infinite cubic-bezier(0.55, 0.06, 0.68, 0.19),
    blob-outline-color-3 17s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
    blob-breathe-3 11s infinite ease-in-out;
    pointer-events: none;
    box-shadow: 0 0 8px rgba(20, 184, 166, 0.25), 0 0 16px rgba(20, 184, 166, 0.12);
    opacity: 0.85;
}

body.dark-mode .circle-outline {
    border-color: rgba(45, 212, 191, 0.42);
    box-shadow: 0 0 10px rgba(45, 212, 191, 0.3), 0 0 20px rgba(45, 212, 191, 0.15);
    animation: blob-morph-3 22s linear infinite alternate,
    blob-float-3 18s infinite cubic-bezier(0.55, 0.06, 0.68, 0.19),
    blob-outline-color-3-dark 17s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
    blob-breathe-3 11s infinite ease-in-out;
}

.blob-outline {
    position: absolute;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    border: 2px solid transparent;
    pointer-events: none;
}

.blob-outline-1 {
    border: 3px solid rgba(59, 130, 246, 0.45);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.2), 0 0 24px rgba(59, 130, 246, 0.1);
    animation: blob-morph-1 15s linear infinite alternate,
    blob-float-1 20s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95),
    blob-outline-color-1 16s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
    blob-breathe-1 6s infinite ease-in-out;
    width: 350px;
    height: 350px;
    top: 35%;
    left: -5%;
    opacity: 0.9;
}

body.dark-mode .blob-outline-1 {
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.25), 0 0 30px rgba(96, 165, 250, 0.12);
    animation: blob-morph-1 15s linear infinite alternate,
    blob-float-1 20s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95),
    blob-outline-color-1-dark 16s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
    blob-breathe-1 6s infinite ease-in-out;
}

.blob-outline-2 {
    border: 3px solid rgba(139, 92, 246, 0.42);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.22), 0 0 22px rgba(139, 92, 246, 0.11);
    animation: blob-morph-2 18s linear infinite alternate,
    blob-float-2 25s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94),
    blob-outline-color-2 13s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
    blob-breathe-2 7s infinite ease-in-out;
    width: 450px;
    height: 450px;
    bottom: -35%;
    right: 15%;
    opacity: 0.88;
}

body.dark-mode .blob-outline-2 {
    border-color: rgba(167, 139, 250, 0.48);
    box-shadow: 0 0 14px rgba(167, 139, 250, 0.28), 0 0 28px rgba(167, 139, 250, 0.14);
    animation: blob-morph-2 18s linear infinite alternate,
    blob-float-2 25s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94),
    blob-outline-color-2-dark 13s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
    blob-breathe-2 7s infinite ease-in-out;
}

/* Hero Content */
.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 1.5rem 0 3rem;
    color: var(--text-light);
}

body.dark-mode .hero-content p {
    color: var(--text-dark-light);
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    max-width: 800px;
    margin-left: 2rem;
    position: relative;
}

.blob-image-container {
    position: relative;
    width: 120%;
    height: 120%;
    border-radius: 42% 56% 72% 28% / 42% 42% 56% 48%;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: blob-morph-enhanced 20s cubic-bezier(0.4, 0.0, 0.6, 1) infinite;
    transition: all 1s ease-in-out;
    transform-origin: center;
}

body.dark-mode .blob-image-container {
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.blob-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 0, 0, 0));
    z-index: 1;
    mix-blend-mode: overlay;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.blob-image-container:hover .blob-overlay {
    opacity: 0.8;
}

body.dark-mode .blob-overlay {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(0, 0, 0, 0));
    mix-blend-mode: screen;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
    position: relative;
    z-index: 0;
}

.blob-image-container:hover img {
    transform: scale(1.05);
}

/* Modern multi-layer button with glass effect */
.modern-btn-wrapper {
    position: relative;
    display: inline-block;
}

.modern-btn-wrapper .btn {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-color), #8b84ff);
    box-shadow: 0 6px 15px rgba(108, 99, 255, 0.25);
    padding: 18px 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
    min-width: 150px;
    min-height: 60px;
}

.modern-btn-wrapper .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-btn-wrapper .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.35);
}

.modern-btn-wrapper .btn:hover::before {
    opacity: 1;
}

.glass-layer {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    transform: translate(-6px, -7px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 18px 28px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.modern-btn-wrapper:hover .glass-layer {
    transform: translate(0, 0);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
}

.glass-layer:active {
    transform: translateY(1px) !important;
    transition: all 0.1s ease;
}

body.dark-mode .modern-btn-wrapper .btn {
    background: linear-gradient(135deg, #7a72ff, #5951da);
    box-shadow: 0 6px 15px rgba(108, 99, 255, 0.3);
}

body.dark-mode .glass-layer {
    background: rgba(60, 60, 100, 0.15);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    color: rgba(255, 255, 255, 0.95);
}

body.dark-mode .modern-btn-wrapper:hover .glass-layer {
    background: rgba(60, 60, 100, 0.25);
}

@keyframes blob-float-1 {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-4px) rotate(0.3deg) scale(1.003);
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

@keyframes blob-float-2 {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(5px) rotate(-0.2deg) scale(1.005);
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

@keyframes blob-float-3 {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(3px) rotate(-0.25deg) scale(1.002);
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

@keyframes blob-morph-enhanced {
    0% {
        border-radius: 58% 42% 52% 48% / 54% 46% 48% 52%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 46% 54% 58% 42% / 42% 58% 52% 48%;
        transform: rotate(0.2deg) scale(1.003);
    }
    50% {
        border-radius: 52% 48% 44% 56% / 56% 44% 58% 42%;
        transform: rotate(-0.3deg) scale(0.997);
    }
    75% {
        border-radius: 54% 46% 56% 44% / 48% 52% 44% 56%;
        transform: rotate(0.3deg) scale(1.005);
    }
    100% {
        border-radius: 58% 42% 52% 48% / 54% 46% 48% 52%;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes blob-move-1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(8px, 5px) scale(1.01) rotate(0.2deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

@keyframes blob-move-2 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(-6px, -4px) scale(1.015) rotate(-0.2deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

@keyframes blob-move-3 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(5px, -8px) scale(0.99) rotate(0.15deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

@keyframes blob-move-4 {
    0% {
        transform: translateX(-50%) scale(1) rotate(0deg);
        border-radius: 52% 48% 48% 52% / 48% 52% 52% 48%;
    }
    50% {
        transform: translateX(-50%) translateY(6px) scale(1.008) rotate(0.2deg);
        border-radius: 48% 52% 54% 46% / 54% 46% 48% 52%;
    }
    100% {
        transform: translateX(-50%) scale(1) rotate(0deg);
        border-radius: 52% 48% 48% 52% / 48% 52% 52% 48%;
    }
}

@keyframes blob-color-1 {
    0% {
        background-color: rgba(59, 130, 246, 0.32);
    }
    25% {
        background-color: rgba(16, 185, 129, 0.45);
    }
    50% {
        background-color: rgba(139, 92, 246, 0.42);
    }
    75% {
        background-color: rgba(236, 72, 153, 0.38);
    }
    100% {
        background-color: rgba(59, 130, 246, 0.32);
    }
}

@keyframes blob-color-1-dark {
    0% {
        background-color: rgba(96, 165, 250, 0.28);
    }
    25% {
        background-color: rgba(52, 211, 153, 0.35);
    }
    50% {
        background-color: rgba(167, 139, 250, 0.32);
    }
    75% {
        background-color: rgba(251, 113, 133, 0.3);
    }
    100% {
        background-color: rgba(96, 165, 250, 0.28);
    }
}

@keyframes blob-color-2 {
    0% {
        background-color: rgba(20, 184, 166, 0.35);
    }
    25% {
        background-color: rgba(251, 146, 60, 0.48);
    }
    50% {
        background-color: rgba(59, 130, 246, 0.45);
    }
    75% {
        background-color: rgba(168, 85, 247, 0.42);
    }
    100% {
        background-color: rgba(20, 184, 166, 0.35);
    }
}

@keyframes blob-color-2-dark {
    0% {
        background-color: rgba(45, 212, 191, 0.32);
    }
    25% {
        background-color: rgba(252, 165, 165, 0.4);
    }
    50% {
        background-color: rgba(147, 197, 253, 0.38);
    }
    75% {
        background-color: rgba(196, 181, 253, 0.35);
    }
    100% {
        background-color: rgba(45, 212, 191, 0.32);
    }
}

@keyframes blob-color-3 {
    0% {
        background-color: rgba(139, 92, 246, 0.28);
    }
    25% {
        background-color: rgba(34, 197, 94, 0.42);
    }
    50% {
        background-color: rgba(239, 68, 68, 0.38);
    }
    75% {
        background-color: rgba(6, 182, 212, 0.4);
    }
    100% {
        background-color: rgba(139, 92, 246, 0.28);
    }
}

@keyframes blob-color-3-dark {
    0% {
        background-color: rgba(167, 139, 250, 0.25);
    }
    25% {
        background-color: rgba(74, 222, 128, 0.32);
    }
    50% {
        background-color: rgba(248, 113, 113, 0.3);
    }
    75% {
        background-color: rgba(56, 189, 248, 0.35);
    }
    100% {
        background-color: rgba(167, 139, 250, 0.25);
    }
}

@keyframes blob-color-4 {
    0% {
        background-color: rgba(251, 146, 60, 0.24);
    }
    25% {
        background-color: rgba(244, 63, 94, 0.35);
    }
    50% {
        background-color: rgba(99, 102, 241, 0.32);
    }
    75% {
        background-color: rgba(14, 165, 233, 0.3);
    }
    100% {
        background-color: rgba(251, 146, 60, 0.24);
    }
}

@keyframes blob-color-4-dark {
    0% {
        background-color: rgba(252, 211, 77, 0.22);
    }
    25% {
        background-color: rgba(251, 146, 60, 0.3);
    }
    50% {
        background-color: rgba(129, 140, 248, 0.28);
    }
    75% {
        background-color: rgba(56, 189, 248, 0.25);
    }
    100% {
        background-color: rgba(252, 211, 77, 0.22);
    }
}

@keyframes blob-outline-color-1 {
    0% {
        border-color: rgba(59, 130, 246, 0.45);
        box-shadow: 0 0 12px rgba(59, 130, 246, 0.2), 0 0 24px rgba(59, 130, 246, 0.1);
    }
    25% {
        border-color: rgba(16, 185, 129, 0.65);
        box-shadow: 0 0 12px rgba(16, 185, 129, 0.35), 0 0 24px rgba(16, 185, 129, 0.18);
    }
    50% {
        border-color: rgba(139, 92, 246, 0.7);
        box-shadow: 0 0 12px rgba(139, 92, 246, 0.4), 0 0 24px rgba(139, 92, 246, 0.2);
    }
    75% {
        border-color: rgba(236, 72, 153, 0.6);
        box-shadow: 0 0 12px rgba(236, 72, 153, 0.32), 0 0 24px rgba(236, 72, 153, 0.16);
    }
    100% {
        border-color: rgba(59, 130, 246, 0.45);
        box-shadow: 0 0 12px rgba(59, 130, 246, 0.2), 0 0 24px rgba(59, 130, 246, 0.1);
    }
}

@keyframes blob-outline-color-1-dark {
    0% {
        border-color: rgba(96, 165, 250, 0.5);
        box-shadow: 0 0 15px rgba(96, 165, 250, 0.25), 0 0 30px rgba(96, 165, 250, 0.12);
    }
    25% {
        border-color: rgba(52, 211, 153, 0.7);
        box-shadow: 0 0 15px rgba(52, 211, 153, 0.4), 0 0 30px rgba(52, 211, 153, 0.2);
    }
    50% {
        border-color: rgba(167, 139, 250, 0.75);
        box-shadow: 0 0 15px rgba(167, 139, 250, 0.45), 0 0 30px rgba(167, 139, 250, 0.22);
    }
    75% {
        border-color: rgba(251, 113, 133, 0.65);
        box-shadow: 0 0 15px rgba(251, 113, 133, 0.38), 0 0 30px rgba(251, 113, 133, 0.19);
    }
    100% {
        border-color: rgba(96, 165, 250, 0.5);
        box-shadow: 0 0 15px rgba(96, 165, 250, 0.25), 0 0 30px rgba(96, 165, 250, 0.12);
    }
}

@keyframes blob-outline-color-2 {
    0% {
        border-color: rgba(139, 92, 246, 0.42);
        box-shadow: 0 0 12px rgba(139, 92, 246, 0.22), 0 0 22px rgba(139, 92, 246, 0.11);
    }
    25% {
        border-color: rgba(34, 197, 94, 0.68);
        box-shadow: 0 0 12px rgba(34, 197, 94, 0.38), 0 0 22px rgba(34, 197, 94, 0.19);
    }
    50% {
        border-color: rgba(239, 68, 68, 0.65);
        box-shadow: 0 0 12px rgba(239, 68, 68, 0.35), 0 0 22px rgba(239, 68, 68, 0.18);
    }
    75% {
        border-color: rgba(6, 182, 212, 0.7);
        box-shadow: 0 0 12px rgba(6, 182, 212, 0.4), 0 0 22px rgba(6, 182, 212, 0.2);
    }
    100% {
        border-color: rgba(139, 92, 246, 0.42);
        box-shadow: 0 0 12px rgba(139, 92, 246, 0.22), 0 0 22px rgba(139, 92, 246, 0.11);
    }
}

@keyframes blob-outline-color-2-dark {
    0% {
        border-color: rgba(167, 139, 250, 0.48);
        box-shadow: 0 0 14px rgba(167, 139, 250, 0.28), 0 0 28px rgba(167, 139, 250, 0.14);
    }
    25% {
        border-color: rgba(74, 222, 128, 0.72);
        box-shadow: 0 0 14px rgba(74, 222, 128, 0.42), 0 0 28px rgba(74, 222, 128, 0.21);
    }
    50% {
        border-color: rgba(248, 113, 113, 0.68);
        box-shadow: 0 0 14px rgba(248, 113, 113, 0.38), 0 0 28px rgba(248, 113, 113, 0.19);
    }
    75% {
        border-color: rgba(56, 189, 248, 0.75);
        box-shadow: 0 0 14px rgba(56, 189, 248, 0.45), 0 0 28px rgba(56, 189, 248, 0.22);
    }
    100% {
        border-color: rgba(167, 139, 250, 0.48);
        box-shadow: 0 0 14px rgba(167, 139, 250, 0.28), 0 0 28px rgba(167, 139, 250, 0.14);
    }
}

@keyframes blob-outline-color-3 {
    0% {
        border-color: rgba(20, 184, 166, 0.4);
        box-shadow: 0 0 8px rgba(20, 184, 166, 0.25), 0 0 16px rgba(20, 184, 166, 0.12);
    }
    25% {
        border-color: rgba(251, 146, 60, 0.72);
        box-shadow: 0 0 8px rgba(251, 146, 60, 0.45), 0 0 16px rgba(251, 146, 60, 0.22);
    }
    50% {
        border-color: rgba(59, 130, 246, 0.75);
        box-shadow: 0 0 8px rgba(59, 130, 246, 0.48), 0 0 16px rgba(59, 130, 246, 0.24);
    }
    75% {
        border-color: rgba(168, 85, 247, 0.7);
        box-shadow: 0 0 8px rgba(168, 85, 247, 0.42), 0 0 16px rgba(168, 85, 247, 0.21);
    }
    100% {
        border-color: rgba(20, 184, 166, 0.4);
        box-shadow: 0 0 8px rgba(20, 184, 166, 0.25), 0 0 16px rgba(20, 184, 166, 0.12);
    }
}

@keyframes blob-outline-color-3-dark {
    0% {
        border-color: rgba(45, 212, 191, 0.42);
        box-shadow: 0 0 10px rgba(45, 212, 191, 0.3), 0 0 20px rgba(45, 212, 191, 0.15);
    }
    25% {
        border-color: rgba(252, 165, 165, 0.78);
        box-shadow: 0 0 10px rgba(252, 165, 165, 0.5), 0 0 20px rgba(252, 165, 165, 0.25);
    }
    50% {
        border-color: rgba(147, 197, 253, 0.8);
        box-shadow: 0 0 10px rgba(147, 197, 253, 0.52), 0 0 20px rgba(147, 197, 253, 0.26);
    }
    75% {
        border-color: rgba(196, 181, 253, 0.75);
        box-shadow: 0 0 10px rgba(196, 181, 253, 0.48), 0 0 20px rgba(196, 181, 253, 0.24);
    }
    100% {
        border-color: rgba(45, 212, 191, 0.42);
        box-shadow: 0 0 10px rgba(45, 212, 191, 0.3), 0 0 20px rgba(45, 212, 191, 0.15);
    }
}

@keyframes blob-morph-1 {
    0% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }
    25% {
        border-radius: 45% 55% 65% 35% / 40% 50% 50% 60%;
    }
    50% {
        border-radius: 50% 50% 55% 45% / 45% 55% 45% 55%;
    }
    75% {
        border-radius: 55% 45% 45% 55% / 50% 40% 60% 40%;
    }
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }
}

@keyframes blob-morph-2 {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 55% 45% 35% 65% / 58% 32% 68% 42%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    75% {
        border-radius: 45% 55% 65% 35% / 45% 55% 45% 55%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes blob-morph-3 {
    0% {
        border-radius: 42% 58% 30% 70% / 60% 40% 65% 35%;
    }
    25% {
        border-radius: 55% 45% 35% 65% / 40% 60% 40% 60%;
    }
    50% {
        border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
    }
    75% {
        border-radius: 50% 50% 40% 60% / 55% 40% 60% 45%;
    }
    100% {
        border-radius: 42% 58% 30% 70% / 60% 40% 65% 35%;
    }
}

@keyframes blob-morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    8.33% {
        border-radius: 55% 45% 35% 65% / 58% 32% 68% 42%;
    }
    16.66% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    25% {
        border-radius: 45% 55% 65% 35% / 45% 55% 45% 55%;
    }
    33.33% {
        border-radius: 70% 30% 50% 50% / 40% 40% 60% 60%;
    }
    41.67% {
        border-radius: 60% 40% 45% 55% / 50% 35% 65% 50%;
    }
    50% {
        border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    }
    58.33% {
        border-radius: 35% 65% 55% 45% / 65% 40% 60% 35%;
    }
    66.66% {
        border-radius: 50% 50% 30% 70% / 30% 50% 50% 70%;
    }
    75% {
        border-radius: 65% 35% 40% 60% / 40% 60% 40% 60%;
    }
    83.33% {
        border-radius: 50% 60% 30% 40% / 40% 50% 60% 50%;
    }
    91.67% {
        border-radius: 55% 45% 35% 65% / 55% 35% 65% 45%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes blob-pulse-1 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes blob-pulse-2 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes blob-pulse-3 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes blob-pulse-4 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes blob-breathe-1 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes blob-breathe-2 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes blob-breathe-3 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        position: relative;
        overflow: hidden;
    }

    .hero .container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .hero-content {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        line-height: 1.5;
        margin: 1rem auto 2rem;
        max-width: 90%;
    }

    .hero-image {
        flex: 0 0 auto;
        max-width: min(450px, 80vw);
        height: auto;
        margin: 0 auto;
    }

    .blob-image-container {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        max-height: none;
    }

    .hero-cta {
        flex: 0 0 auto;
        justify-content: center;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Optimize background elements for tablet */
    .blob {
        opacity: 0.5;
        filter: blur(35px);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        overflow: hidden;
    }

    .hero .container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
        padding: env(safe-area-inset-top, 1rem) 1rem env(safe-area-inset-bottom, 1rem);
        gap: 0;
    }

    .hero-content {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 7vw, 3rem);
        line-height: 1.1;
        margin: 0 0 0.75rem 0;
    }

    .hero-content p {
        font-size: clamp(1rem, 3.5vw, 1.2rem);
        line-height: 1.4;
        margin: 0 auto 1.5rem;
        max-width: 95%;
    }

    .hero-image {
        flex: 0 0 auto;
        max-width: min(350px, 75vw);
        height: auto;
        margin: 0 auto;
    }

    .blob-image-container {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .hero-cta {
        flex: 0 0 auto;
        justify-content: center;
        gap: 1rem;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    /* Hide some decorative elements for cleaner mobile view */
    .dot-pattern {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero .container {
        gap: 1rem; /* Reduce gap for tighter spacing */
        padding: max(env(safe-area-inset-top), 0.75rem) 0.75rem max(env(safe-area-inset-bottom, 1.5rem), 1.5rem);
        text-align: center; /* Force center alignment */
    }

    .hero-content {
        text-align: center; /* Force center alignment */
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
        line-height: 1.2;
        margin-bottom: 0.5rem;
        text-align: center; /* Force center alignment */
    }

    .hero-content p {
        font-size: clamp(0.85rem, 3vw, 1rem);
        line-height: 1.4;
        margin: 0.5rem 0 1.5rem;
        text-align: center; /* Force center alignment */
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 280px;
        justify-content: center; /* Force center alignment */
        align-items: center; /* Force center alignment */
        margin: 0 auto;
        margin-top: auto; /* Keep at bottom */
    }

    /* Hide scroll indicator */
    .scroll-indicator {
        display: none;
    }

    .modern-btn-wrapper {
        width: 100%;
    }

    .modern-btn-wrapper .btn,
    .glass-layer {
        min-height: 50px; /* Ensure touch-friendly button height */
        padding: 12px 20px;
        font-size: 0.95rem;
        border-radius: 6px;
    }

    .hero-image {
        max-width: min(280px, 70vw);
        max-height: 30vh;
        margin: 0 auto; /* Force center alignment */
    }

    .blob-image-container {
        max-height: 30vh;
        margin: 0 auto; /* Force center alignment */
    }

    /* Keep 3 blobs with reduced sizes but maintain desktop animations */
    .blob-1 {
        width: 260px;
        height: 260px;
        top: -130px;
        left: -65px;
        background-color: rgba(59, 130, 246, 0.32);
        opacity: 0.5;
        filter: blur(25px);
        border-radius: 50%;
        animation: blob-move-1 25s infinite alternate cubic-bezier(0.445, 0.05, 0.55, 0.95),
        blob-color-1 12s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-pulse-1 8s infinite ease-in-out;
    }

    body.dark-mode .blob-1 {
        background-color: rgba(96, 165, 250, 0.28);
        animation: blob-move-1 25s infinite alternate cubic-bezier(0.445, 0.05, 0.55, 0.95),
        blob-color-1-dark 12s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-pulse-1 8s infinite ease-in-out;
    }

    .blob-2 {
        width: 180px;
        height: 180px;
        bottom: -90px;
        right: -45px;
        background-color: rgba(20, 184, 166, 0.35);
        opacity: 0.5;
        filter: blur(22px);
        border-radius: 50%;
        animation: blob-move-2 20s infinite alternate cubic-bezier(0.25, 0.46, 0.45, 0.94),
        blob-color-2 15s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-pulse-2 10s infinite ease-in-out;
    }

    body.dark-mode .blob-2 {
        background-color: rgba(45, 212, 191, 0.32);
        animation: blob-move-2 20s infinite alternate cubic-bezier(0.25, 0.46, 0.45, 0.94),
        blob-color-2-dark 15s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-pulse-2 10s infinite ease-in-out;
    }

    .blob-outline-1 {
        width: 200px;
        height: 200px;
        top: 65%;
        left: -8%;
        border: 2px solid rgba(59, 130, 246, 0.45);
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        opacity: 0.6;
        pointer-events: none;
        box-shadow: 0 0 8px rgba(59, 130, 246, 0.15), 0 0 16px rgba(59, 130, 246, 0.08);
        animation: blob-morph-1 15s linear infinite alternate,
        blob-float-1 20s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95),
        blob-outline-color-1 16s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-breathe-1 6s infinite ease-in-out;
    }

    body.dark-mode .blob-outline-1 {
        border-color: rgba(96, 165, 250, 0.5);
        box-shadow: 0 0 10px rgba(96, 165, 250, 0.18), 0 0 20px rgba(96, 165, 250, 0.09);
        animation: blob-morph-1 15s linear infinite alternate,
        blob-float-1 20s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95),
        blob-outline-color-1-dark 16s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-breathe-1 6s infinite ease-in-out;
    }

    /* Hide other blobs */
    .blob-3, .blob-4, .blob-outline-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100dvh;
        min-height: 100svh;
    }

    .hero .container {
        gap: 1rem;
        padding: max(env(safe-area-inset-top), 0.5rem) 0.5rem max(env(safe-area-inset-bottom), 0.5rem);
        justify-content: space-evenly;
        text-align: center; /* Force center alignment */
    }

    .hero-content {
        text-align: center; /* Force center alignment */
    }

    .hero-content h1 {
        font-size: clamp(1.25rem, 5.5vw, 2rem);
        line-height: 1.15;
        margin-bottom: 0.5rem;
        letter-spacing: -0.02em;
        text-align: center; /* Force center alignment */
    }

    .hero-content p {
        font-size: clamp(0.8rem, 2.8vw, 0.95rem);
        line-height: 1.4;
        margin: 0.5rem 0 1rem;
        max-width: 100%;
        text-align: center; /* Force center alignment */
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        gap: 0.5rem;
        max-width: 260px;
        justify-content: center; /* Force center alignment */
        align-items: center; /* Force center alignment */
        margin: 0 auto;
        margin-top: auto; /* Keep at bottom */
    }

    /* Hide scroll indicator */
    .scroll-indicator {
        display: none;
    }

    .modern-btn-wrapper .btn,
    .glass-layer {
        min-height: 48px; /* iOS minimum touch target */
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 5px;
    }

    .hero-image {
        max-width: min(240px, 65vw);
        max-height: 25vh;
        margin: 0 auto; /* Force center alignment */
    }

    .blob-image-container {
        max-height: 25vh;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Simpler border radius */
        margin: 0 auto; /* Force center alignment */
    }

    /* Maintain desktop-like blobs but smaller */
    .blob-1 {
        width: 200px;
        height: 200px;
        top: -100px;
        left: -50px;
        background-color: rgba(59, 130, 246, 0.32);
        opacity: 0.4;
        filter: blur(18px);
        border-radius: 50%;
        animation: blob-move-1 25s infinite alternate cubic-bezier(0.445, 0.05, 0.55, 0.95),
        blob-color-1 12s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-pulse-1 8s infinite ease-in-out;
    }

    body.dark-mode .blob-1 {
        background-color: rgba(96, 165, 250, 0.28);
        animation: blob-move-1 25s infinite alternate cubic-bezier(0.445, 0.05, 0.55, 0.95),
        blob-color-1-dark 12s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-pulse-1 8s infinite ease-in-out;
    }

    .blob-2 {
        width: 150px;
        height: 150px;
        bottom: -75px;
        right: -40px;
        background-color: rgba(20, 184, 166, 0.35);
        opacity: 0.4;
        filter: blur(18px);
        border-radius: 50%;
        animation: blob-move-2 20s infinite alternate cubic-bezier(0.25, 0.46, 0.45, 0.94),
        blob-color-2 15s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-pulse-2 10s infinite ease-in-out;
    }

    body.dark-mode .blob-2 {
        background-color: rgba(45, 212, 191, 0.32);
        animation: blob-move-2 20s infinite alternate cubic-bezier(0.25, 0.46, 0.45, 0.94),
        blob-color-2-dark 15s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-pulse-2 10s infinite ease-in-out;
    }

    .blob-outline-1 {
        width: 150px;
        height: 150px;
        top: 70%;
        left: -5%;
        border: 2px solid rgba(59, 130, 246, 0.45);
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        opacity: 0.5;
        pointer-events: none;
        box-shadow: 0 0 6px rgba(59, 130, 246, 0.12), 0 0 12px rgba(59, 130, 246, 0.06);
        animation: blob-morph-1 15s linear infinite alternate,
        blob-float-1 20s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95),
        blob-outline-color-1 16s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-breathe-1 6s infinite ease-in-out;
    }

    body.dark-mode .blob-outline-1 {
        border-color: rgba(96, 165, 250, 0.5);
        box-shadow: 0 0 8px rgba(96, 165, 250, 0.15), 0 0 16px rgba(96, 165, 250, 0.08);
        animation: blob-morph-1 15s linear infinite alternate,
        blob-float-1 20s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95),
        blob-outline-color-1-dark 16s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-breathe-1 6s infinite ease-in-out;
    }

    /* Hide other elements for optimal performance */
    .blob-3, .blob-4, .blob-outline-2, .circle-outline {
        display: none;
    }
}

@media (max-width: 360px) {
    .hero .container {
        gap: 0.5rem; /* Minimal gap for tiny screens */
        padding: max(env(safe-area-inset-top), 0.25rem) 0.25rem max(env(safe-area-inset-bottom, 1rem), 1rem);
        text-align: center; /* Force center alignment */
    }

    .hero-content {
        text-align: center; /* Force center alignment */
    }

    .hero-content h1 {
        font-size: clamp(1.1rem, 5vw, 1.75rem);
        margin-bottom: 0.25rem;
        text-align: center; /* Force center alignment */
    }

    .hero-content p {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
        margin: 0.25rem 0 0.75rem;
        text-align: center; /* Force center alignment */
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        max-width: 240px;
        justify-content: center; /* Force center alignment */
        align-items: center; /* Force center alignment */
        margin: 0 auto;
        margin-top: auto; /* Keep at bottom */
    }

    /* Hide scroll indicator */
    .scroll-indicator {
        display: none;
    }

    .modern-btn-wrapper .btn,
    .glass-layer {
        min-height: 44px;
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .hero-image {
        max-width: min(200px, 60vw);
        max-height: 22vh;
        margin: 0 auto; /* Force center alignment */
    }

    .blob-image-container {
        max-height: 22vh;
        margin: 0 auto; /* Force center alignment */
    }

    /* Smallest blob sizes but maintain desktop animations */
    .blob-1 {
        width: 150px;
        height: 150px;
        top: -75px;
        left: -35px;
        background-color: rgba(59, 130, 246, 0.32);
        opacity: 0.3;
        filter: blur(15px);
        border-radius: 50%;
        animation: blob-move-1 25s infinite alternate cubic-bezier(0.445, 0.05, 0.55, 0.95),
        blob-color-1 12s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-pulse-1 8s infinite ease-in-out;
    }

    body.dark-mode .blob-1 {
        background-color: rgba(96, 165, 250, 0.28);
        animation: blob-move-1 25s infinite alternate cubic-bezier(0.445, 0.05, 0.55, 0.95),
        blob-color-1-dark 12s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-pulse-1 8s infinite ease-in-out;
    }

    .blob-2 {
        width: 120px;
        height: 120px;
        bottom: -60px;
        right: -30px;
        background-color: rgba(20, 184, 166, 0.35);
        opacity: 0.3;
        filter: blur(15px);
        border-radius: 50%;
        animation: blob-move-2 20s infinite alternate cubic-bezier(0.25, 0.46, 0.45, 0.94),
        blob-color-2 15s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-pulse-2 10s infinite ease-in-out;
    }

    body.dark-mode .blob-2 {
        background-color: rgba(45, 212, 191, 0.32);
        animation: blob-move-2 20s infinite alternate cubic-bezier(0.25, 0.46, 0.45, 0.94),
        blob-color-2-dark 15s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-pulse-2 10s infinite ease-in-out;
    }

    .blob-outline-1 {
        width: 120px;
        height: 120px;
        top: 72%;
        left: -3%;
        border: 1px solid rgba(59, 130, 246, 0.45);
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        opacity: 0.4;
        pointer-events: none;
        box-shadow: 0 0 4px rgba(59, 130, 246, 0.1), 0 0 8px rgba(59, 130, 246, 0.05);
        animation: blob-morph-1 15s linear infinite alternate,
        blob-float-1 20s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95),
        blob-outline-color-1 16s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-breathe-1 6s infinite ease-in-out;
    }

    body.dark-mode .blob-outline-1 {
        border-color: rgba(96, 165, 250, 0.5);
        box-shadow: 0 0 6px rgba(96, 165, 250, 0.12), 0 0 12px rgba(96, 165, 250, 0.06);
        animation: blob-morph-1 15s linear infinite alternate,
        blob-float-1 20s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95),
        blob-outline-color-1-dark 16s infinite cubic-bezier(0.4, 0.0, 0.6, 1),
        blob-breathe-1 6s infinite ease-in-out;
    }

    /* Keep blob container but ensure no other background elements */
    .blob-3, .blob-4, .blob-outline-2, .circle-outline {
        display: none;
    }
}

/* Landscape orientation optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .hero .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0.5rem 1rem;
    }

    .hero-content {
        flex: 1;
        text-align: left;
        max-width: 50%;
    }

    .hero-content h1 {
        font-size: clamp(1.25rem, 4vw, 2rem);
        line-height: 1.1;
    }

    .hero-content p {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
        margin: 0.5rem 0;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .modern-btn-wrapper {
        width: auto;
    }

    .modern-btn-wrapper .btn,
    .glass-layer {
        min-height: 40px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .hero-image {
        flex: 1;
        max-width: 45%;
        max-height: 80vh;
        margin: 0;
    }

    .blob-image-container {
        max-height: 80vh;
    }
}

/* High DPI displays optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .blob {
        filter: blur(15px); /* Reduce blur on high DPI for better performance */
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero,
    .blob,
    .blob-outline,
    .blob-image-container,
    .modern-btn-wrapper .btn,
    .glass-layer {
        animation: none !important;
        transition: none !important;
    }

    .blob-image-container {
        border-radius: 20px; /* Simple radius for users who prefer reduced motion */
    }
}
