/* --- CONSCIOUSPRENEUR TAILWIND-INSPIRED UTILITIES --- */
:root {
    /* Adding a refined scale to your existing palette */
    --cp-dark: #0a0a0a;
    --cp-white: #ffffff;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Spacing System (Inspired by Tailwind's 4px scale) */
.cp-py-section { padding-top: 5rem; padding-bottom: 5rem; }
.cp-mb-4 { margin-bottom: 1rem; }
.cp-mb-8 { margin-bottom: 2rem; }
.cp-gap-6 { gap: 1.5rem; }

/* Typography Logic */
.cp-h1 {
    font-family: 'Glacil Bold', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cp-lead {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Modern Card/Container Logic */
.cp-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    transition: var(--transition-smooth);
}

.cp-glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
    border-color: var(--theme-blue-light);
}

/* Button Refinement */
.cp-btn-primary {
    background-color: var(--theme-blue-light);
    padding: 0.8rem 2rem;
    border-radius: 9999px; /* Pill shape */
    color: white;
    font-family: 'Glacil Bold';
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.cp-btn-primary:hover {
    background-color: var(--highlight-color);
    transform: scale(1.05);
    color: white !important;
}

/* Flexbox/Grid Utilities (Tailwind Style) */
.cp-flex-center { display: flex; align-items: center; justify-content: center; }
.cp-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

@media (max-width: 768px) {
    .cp-grid-2 { grid-template-columns: 1fr; }
    .cp-py-section { padding-top: 3rem; padding-bottom: 3rem; }
}