@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --brand-green: #10b981; /* Emerald-500 matching the theme */
    --brand-blue: #3b82f6;
    --grid-color: rgba(200, 215, 225, 0.45);
}

/* Core Body Styling */
body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: #f8fafc; 
    margin: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 10px; }

/* Subtle blob animations */
.blob-anim { 
    animation: move-blob 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1); 
}
@keyframes move-blob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -30px) scale(1.1); }
}

/* =========================================
   NEW PREMIUM HERO SECTION 
   ========================================= */
.ask-hero-section {
    background-color: #f4f8fa;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
    padding: 56px 24px;
    border-radius: 0 0 24px 24px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--brand-green);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.4rem, 4.3vw, 4rem);
    line-height: 1.05;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 24px 0;
    letter-spacing: -0.03em;
    font-family: 'Inter', sans-serif;
}

.hero-title .text-green { color: var(--brand-green); }
.hero-title .text-blue { color: var(--brand-blue); }

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 36px;
    max-width: 520px;
}

/* Tags & Actions */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
}
.hero-tag i { color: var(--brand-green); }

.hero-action-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    padding: 14px 28px;
    background: #064e3b; /* Matches your Tailwind theme */
    color: white;
    font-weight: 700;
    border-radius: 100px;
    box-shadow: 0 10px 20px rgba(6, 78, 59, 0.2);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}
.hero-btn-primary:hover {
    background: #166534;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(6, 78, 59, 0.3);
}

.hero-btn-secondary {
    padding: 14px 28px;
    background: #ffffff;
    color: #334155;
    font-weight: 700;
    border-radius: 100px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid #e5e7eb;
    transition: all 0.2s ease;
    cursor: pointer;
}
.hero-btn-secondary:hover {
    border-color: var(--brand-green);
    transform: translateY(-2px);
}

/* Right Art Canvas */
.hero-art {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.art-backdrop {
    position: relative;
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 48px;
    box-shadow: inset 0 0 0 1.5px #ffffff, 0 20px 40px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Concentric Circles */
.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(16, 185, 129, 0.25);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.circle-1 { width: 320px; height: 320px; }
.circle-2 { width: 440px; height: 440px; border-style: dotted; opacity: 0.5;}

/* Center Card */
.center-card {
    position: relative;
    background: #ffffff;
    width: 65%;
    padding: 36px 28px;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 10;
}

.center-icon-box {
    width: 60px;
    height: 60px;
    background: var(--brand-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.25);
}

.center-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.center-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.card-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green { background: var(--brand-green); }
.dot-blue { background: var(--brand-blue); }
.dot-yellow { background: #facc15; }

/* Floating Icons */
.float-icon {
    position: absolute;
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    z-index: 20;
}
.float-icon i { color: #334155; }

.float-tl { top: -15px; left: 25px; animation: floatY 6s ease-in-out infinite; color: var(--brand-green); }
.float-tr { top: 35px; right: -15px; animation: floatY 7s ease-in-out infinite reverse; color: var(--brand-blue); }
.float-bl { bottom: 35px; left: -15px; animation: floatY 5s ease-in-out infinite 1s; color: #facc15; }
.float-br { bottom: -15px; right: 25px; animation: floatY 6.5s ease-in-out infinite 0.5s; color: var(--brand-green);}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-eyebrow, .hero-tags, .hero-action-btns { justify-content: center; }
    .hero-description { margin: 0 auto 36px; }
    .hero-art { margin-top: 20px; }
    .ask-hero-section { padding: 40px 20px; border-radius: 0 0 20px 20px; }
}