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

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFF8F0;
    color: #2D2D2D;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(45,45,45,0.05) 59px, rgba(45,45,45,0.05) 60px),
        repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(45,45,45,0.05) 59px, rgba(45,45,45,0.05) 60px);
    pointer-events: none;
    z-index: 0;
}

.parallax-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
}

.blob-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: radial-gradient(ellipse at 30% 30%, #FFB347, #FF6B35);
    opacity: 0.15;
}

.blob-2 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: -80px;
    background: radial-gradient(ellipse at 50% 50%, #FF8FA3, #FF6B35);
    opacity: 0.12;
    border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
}

.blob-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 5%;
    background: radial-gradient(ellipse at 60% 40%, #FFB347, #FF8FA3);
    opacity: 0.1;
    border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
}

.blob-4 {
    width: 180px;
    height: 180px;
    top: 20%;
    left: 20%;
    background: radial-gradient(ellipse at 40% 60%, #FF6B35, #FFB347);
    opacity: 0.08;
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
}

.blob-5 {
    width: 350px;
    height: 350px;
    bottom: -50px;
    left: 30%;
    background: radial-gradient(ellipse at 50% 50%, #FF8FA3, #FFB347);
    opacity: 0.1;
    border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.hero-section {
    text-align: center;
    padding: 80px 0 60px;
}

.hero-blob {
    background: rgba(255,107,53,0.08);
    border-radius: 60% 40% 55% 45% / 45% 60% 40% 55%;
    padding: 80px 60px;
    display: inline-block;
    max-width: 600px;
}

.hero-blob h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 16px;
}

.tagline {
    font-size: 1.25rem;
    color: #2D2D2D;
    font-weight: 300;
    opacity: 0.8;
}

.about-section,
.features-section,
.cta-section {
    margin-bottom: 80px;
}

.blob-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    padding: 48px 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blob-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(255,107,53,0.12);
}

.blob-card h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 16px;
}

.blob-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2D2D2D;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto;
}

.blob-card-1 {
    border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
}

.blob-card-2 {
    border-radius: 45% 55% 60% 40% / 40% 55% 45% 60%;
    margin-bottom: 40px;
}

.blob-card-3 {
    border-radius: 55% 45% 40% 60% / 60% 40% 60% 40%;
}

.blob-card-4 {
    border-radius: 50% 50% 55% 45% / 45% 55% 45% 55%;
    background: linear-gradient(135deg, rgba(255,179,71,0.15), rgba(255,143,163,0.15));
}

.cta-button {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #FF6B35, #FFB347);
    color: #FFF8F0;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255,107,53,0.3);
}

.footer-section {
    text-align: center;
    padding: 40px 0;
    opacity: 0.6;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-blob {
        padding: 50px 30px;
        border-radius: 50% 50% 45% 55% / 45% 55% 45% 55%;
    }

    .hero-blob h1 {
        font-size: 2.5rem;
    }

    .blob-card {
        padding: 36px 24px;
    }

    .container {
        padding: 40px 16px;
    }
}
