* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header {
    margin-bottom: 3rem;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    margin-right: 0.75rem;
    font-size: 2.8rem;
}

.tagline {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.main-content {
    margin-bottom: 3rem;
    width: 100%;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1e293b;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background-color: white;
    color: #2563eb;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 280px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-desc {
    color: #64748b;
    font-size: 0.95rem;
}

.footer {
    margin-top: 4rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

@media (max-width:768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle,
    .tagline {
        font-size: 1.1rem;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    z-index: -1;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #60a5fa;
    top: 0px;
    left: 0px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #818cf8;
    bottom: 0px;
    right: 0px;
}

.icon-set {
    background-image: url('icon-set.png');
}

.icon-home {
    background-position: 0 0;
}

.icon-user {
    background-position: -24px 0;
}

html,
body {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

.landing-container {
    overflow: hidden;
}

.features {
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.features::-webkit-scrollbar {
    display: none;
}
