/* --- CSS Variables & Design System --- */
:root {
    --primary-bg: #f5f8fc;
    --text-main: #334155;
    --text-muted: #64748b;
    --accent-yellow: #facc15;
    --accent-blue: #3b82f6;
    --accent-pink: #ec4899;
    --accent-green: #10b981;
    --accent-orange: #f97316;
    
    --font-heading: 'Fredoka One', cursive;
    --font-body: 'Outfit', sans-serif;
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: #1e293b;
    letter-spacing: 0.5px;
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.btn-primary-small {
    background: var(--accent-blue);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.btn-primary-small:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 6rem 5% 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent-pink);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--accent-yellow);
    z-index: -1;
    border-radius: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.store-badge {
    height: 60px;
    transition: transform 0.3s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}

/* Hero Image & Mockup */
.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(180deg, rgba(244, 114, 182, 0.4) 0%, rgba(96, 165, 250, 0.4) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

#hero-mockup {
    width: 300px;
    border-radius: 35px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    animation: float 5s ease-in-out infinite alternate;
}

.badge-1 {
    top: 20%;
    left: 10%;
    color: var(--accent-orange);
    animation-delay: 1s;
}

.badge-2 {
    bottom: 20%;
    right: 5%;
    color: var(--accent-green);
    animation-delay: 2.5s;
}

/* --- Features Section --- */
.features-section {
    padding: 8rem 5%;
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

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

.feature-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.feature-card.color-blue:hover { border-color: var(--accent-blue); }
.feature-card.color-pink:hover { border-color: var(--accent-pink); }
.feature-card.color-green:hover { border-color: var(--accent-green); }
.feature-card.color-orange:hover { border-color: var(--accent-orange); }

.icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* --- Coming Soon Section --- */
.coming-soon {
    padding: 6rem 5%;
    background: var(--accent-yellow);
    text-align: center;
    border-radius: 50px 50px 0 0;
}

.coming-soon-content {
    max-width: 700px;
    margin: 0 auto;
}

.coming-soon h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.highlight-alt {
    color: var(--accent-pink);
    -webkit-text-stroke: 2px white;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #854d0e;
    margin-bottom: 3rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    box-shadow: var(--shadow-soft);
}

.btn-secondary {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

/* --- Footer --- */
footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand .logo img {
    height: 90px;
    margin-bottom: 1rem;
}

.footer-brand p {
    max-width: 300px;
}

.footer-links h4, .footer-social h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-links a, .footer-social a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-social a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    font-size: 0.9rem;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }
    
    .hero-content {
        margin-bottom: 4rem;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .blob {
        width: 300px;
        height: 300px;
    }
    
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 600px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.8rem; }
    .newsletter-form { flex-direction: column; }
    .features-section { padding: 4rem 5%; }
}
