/* --- CRAWFORD COACHING ABSTRACT ART --- */
/* VERSION: v0.1.0 */

/* NOTE: !important is used here to GUARANTEE these styles override anything else.
   Usually bad practice, but necessary here to ensure you see them immediately. */

/* 1. HERO BACKGROUND (Dark Navy with VISIBLE Gold light) */
section#hero.bg-abstract-hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(176, 141, 87, 0.3) 0%, transparent 50%), /* Increased opacity to 0.3 */
        radial-gradient(circle at 0% 100%, rgba(11, 18, 32, 1) 0%, transparent 60%),
        linear-gradient(135deg, #1a2233 0%, #0B1220 100%) !important; /* Lighter start color for more contrast */
}

/* 2. RESEARCH BACKGROUND (Highly visible Grid) */
section#hero.bg-abstract-grid {
    background-color: #0B1220 !important;
    background-image:
        linear-gradient(rgba(176, 141, 87, 0.15) 1px, transparent 1px), /* Increased opacity to 0.15 */
        linear-gradient(90deg, rgba(176, 141, 87, 0.15) 1px, transparent 1px) !important;
    background-size: 60px 60px !important;
}

/* 3. MINDSET BACKGROUND (Highly visible Flow) */
section#hero.bg-abstract-flow {
    background-color: #0B1220 !important;
    background-image:
        radial-gradient(ellipse at top left, rgba(176, 141, 87, 0.25), transparent 70%), /* Increased opacity to 0.25 */
        radial-gradient(ellipse at bottom right, rgba(20, 30, 50, 0.8), transparent 70%) !important;
}