/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background: linear-gradient(135deg, #fef7f3 0%, #fdf2f8 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(199, 97, 136, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.company-name {
    font-family: 'Caveat', cursive;
    font-size: 1.75rem;
    font-weight: 600;
    color: #c76188;
    text-align: center;
}

/* Hero Section */
.main {
    padding: 3rem 0;
}

.hero {
    text-align: center;
    padding: 3rem 0 4rem;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-image {
    width: 400px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(199, 97, 136, 0.3));
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px) scale(1.02);
}

.hero-title {
    font-family: 'Caveat', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #c76188;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(199, 97, 136, 0.15);
}

.launching-badge {
    display: inline-block;
    background: #fef7f7;
    color: #c76188;
    padding: 0.5rem 1rem;
    border: 2px solid #c76188;
    border-radius: 15px;
    font-size: 1.125rem;
    font-weight: 500;
    margin: 1.5rem 0 0;
    font-family: 'Caveat', cursive;
    transform: rotate(-1deg);
    position: relative;
    box-shadow: 2px 2px 8px rgba(199, 97, 136, 0.15);
    
    /* Hand-drawn effect with rough border */
    border-radius: 12px 18px 14px 16px;
    
    /* Subtle texture to mimic pencil drawing */
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(199, 97, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(199, 97, 136, 0.05) 0%, transparent 50%);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #8b5a3c;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Features Section */
.features {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 97, 136, 0.1);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 2px solid rgba(199, 97, 136, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(199, 97, 136, 0.3);
    box-shadow: 0 10px 30px rgba(199, 97, 136, 0.15);
}

.feature-title {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: #c76188;
    margin-bottom: 1rem;
}

.feature-description {
    color: #8b5a3c;
    line-height: 1.6;
}


/* Footer */
.footer {
    background: rgba(139, 90, 60, 0.1);
    padding: 2rem 0;
    border-top: 1px solid rgba(199, 97, 136, 0.1);
}

.footer-text {
    text-align: center;
    color: #8b5a3c;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-image {
        width: 300px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    
    .company-name {
        font-size: 1.25rem;
    }
}