html,
body {
    overflow-x: hidden;
}

body {
    background-color: #fafafa;
    color: #1f2937;
}

/* Biomorphic & Random Background Blobs */
.bg-blob {
    position: absolute;
    filter: blur(90px);
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}

.blob-1 {
    top: -10%;
    left: -20%;
    width: 60vw;
    height: 60vw;
    background: rgba(16, 185, 129, 0.3);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph1 14s ease-in-out infinite alternate;
}

.blob-2 {
    bottom: 10%;
    right: -20%;
    width: 70vw;
    height: 70vw;
    background: rgba(250, 204, 21, 0.3);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph2 20s ease-in-out infinite alternate-reverse;
}

.blob-3 {
    top: 40%;
    left: 30%;
    width: 50vw;
    height: 50vw;
    background: rgba(244, 114, 182, 0.3);
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    animation: morph3 16s linear infinite alternate;
}

@keyframes morph1 {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes morph2 {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

@keyframes morph3 {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }

    100% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(180deg);
    }
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.glass-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

/* Material 3 Expressive Buttons */
.btn-primary {
    position: relative;
    overflow: hidden;
    background: #F472B6;
    color: #fff;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 14px 0 rgba(244, 114, 182, 0.39);
}

.btn-primary:hover {
    background: #FFB7C5;
    box-shadow: 0 10px 25px rgba(255, 183, 197, 0.5);
    transform: translateY(-2px);
}

.btn-primary::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
}

.btn-primary:active::after {
    transform: scale(4);
    opacity: 1;
    transition: 0s;
    animation: ripple 0.6s linear;
}

.btn-secondary {
    background: #fff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Biomorphic Modifiers */
.shape-organic-1 {
    border-radius: 50% 20% 40% 30% / 30% 50% 20% 40%;
    transition: border-radius 2s ease-in-out;
}

.shape-organic-1:hover {
    border-radius: 30% 70% 50% 50% / 50% 30% 70% 50%;
}

.shape-organic-2 {
    border-radius: 30% 60% 40% 50% / 50% 40% 60% 30%;
    transition: border-radius 2s ease-in-out;
}

.shape-organic-2:hover {
    border-radius: 60% 40% 50% 50% / 30% 50% 50% 70%;
}

.shape-organic-3 {
    border-radius: 40% 30% 60% 40% / 60% 20% 50% 30%;
    transition: border-radius 2s ease-in-out;
}

.shape-organic-3:hover {
    border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}