/* Reset & Base Styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #121212;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.3px;
}

/* Blob Background */
.blob-outer-container {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 0;
    inset: 0;
    margin: auto;
    filter: blur(120px);
    opacity: 0.7;
}

.blob-inner-container {
    border-radius: 99999px;
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100vw;
    height: 100vh;
    min-width: 1000px;
    overflow: hidden;
    transform: scale(0.6);
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
}

.blob-1 {
    background: #FFA23E;
    top: 30%;
    left: 30%;
    animation: floatBlob1 3s ease-in-out infinite;
}

.blob-2 {
    background: #009937;
    bottom: 30%;
    right: 30%;
    animation: floatBlob2 3s ease-in-out infinite;
}

@keyframes floatBlob1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(80px, -40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(40px, 80px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(-80px, 40px) rotate(270deg) scale(1.05);
    }
}

@keyframes floatBlob2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-60px, 50px) rotate(-90deg) scale(1.1);
    }
    50% {
        transform: translate(-100px, -60px) rotate(-180deg) scale(0.95);
    }
    75% {
        transform: translate(70px, -30px) rotate(-270deg) scale(1.08);
    }
}

/* Header/Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.logo img {
    height: 40px;
    display: block;
}

.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    letter-spacing: -0.6px;
    
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.2s ease;
    
}

.nav-link:hover {
    opacity: 0.7;
}

/* Main Content */
.home-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 1;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 32px;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid #fff;
}

/* Badge Section */
.badge-section {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.badge-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 20px 24px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .header-nav {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .home-page {
        padding: 100px 24px 80px;
    }
    
    .hero-title {
        font-size: 40px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        width: 100%;
        padding: 0 10px;
    }
    
    .btn {
        width: 100%;
        max-width: 350px;
        text-align: center;
    }
    
    .badge-section {
        bottom: 40px;
        width: 100%;
        padding: 0 24px;
        text-align: center;
    }
    
    .badge-text {
        font-size: 14px;
    }
    
    /* FIX BLOB POSITIONING ON MOBILE */
    .blob-inner-container {
        transform: scale(0.8);  /* Increase scale slightly */
        min-width: 100%;  /* Remove min-width constraint */
    }
    
    .blob {
        width: 300px;  /* Smaller blobs */
        height: 300px;
    }
    
    .blob-1 {
        top: 20%;  /* Reposition to center */
        left: 50%;
        transform: translateX(-50%);  /* Center it */
    }
    
    .blob-2 {
        bottom: 20%;  /* Reposition to center */
        right: auto;
        left: 50%;
        transform: translateX(-50%);  /* Center it */
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }

    .btn {
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
    cursor: pointer;
}
    
    .badge-text {
        font-size: 14px;
    }
    
    .blob {
        width: 250px;  /* Even smaller on very small screens */
        height: 250px;
    }
}