.riseup-section {
    /* Mimics: bg-gradient-to-br from-sky-100 via-rose-50 to-yellow-50 */
    background: linear-gradient(135deg, #e0f2fe 0%, #fff1f2 50%, #fefce8 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* --- Icon & Glow Effect --- */
.icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.icon-glow {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    /* Mimics: bg-gradient-to-r from-sky-400 to-rose-400 */
    background: linear-gradient(to right, #38bdf8, #fb7185);
    border-radius: 50%;
    filter: blur(24px); /* blur-xl */
    opacity: 0.5;
    z-index: 0;
}

.music-icon {
    font-size: 4.5rem; /* text-7xl */
    color: #5c8272!important;
    position: relative;
    z-index: 10;
    line-height: 1;
}

/* --- Badge --- */
.badge-coming-soon {
    background-color: #facc15; /* yellow-400 */
    color: #111827; /* gray-900 */
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem; /* text-sm */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em; /* tracking-wider */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* --- Typography --- */
.sub-heading1 {
    color: #5c8272;
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: var(--font-01);
}

.desc-text {
    color: #3d574d;
    font-size: 1.25rem; /* text-xl */
    line-height: 1.75;
    max-width: 48rem; /* max-w-3xl */
    margin: 0 auto 2.5rem auto;
    font-family: var(--font-01)
}

.imagine-text {
    color: #2d3f37;
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    margin-bottom: 2.5rem;
    font-family: var(--font-01)
}

/* --- Glassmorphism Quote Box --- */
.quote-box2 {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid #d1dcd7;
    border-radius: 1rem; /* rounded-2xl */
    padding: 2rem; /* p-8 */
    max-width: 48rem; /* max-w-3xl */
    margin: 0 auto 2rem auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    font-family: var(--font-01)
}

.quote-text2 {
    color: #5c8272;
    font-size: 1.5rem; /* text-2xl */
    font-style: italic;
    line-height: 1.75;
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (min-width: 768px) {
    .riseup-section {
        padding-top: 8rem; /* md:py-32 */
        padding-bottom: 8rem;
    }
    .music-icon {
        font-size: 6rem; /* md:text-8xl */
    }
}