/* ==========================================================================
   LANDING PAGE DEDICATED HIGH-END GLOW & ANIMATION STYLES
   ========================================================================== */
.hero-canvas {
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge-pill {
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.2), rgba(37, 99, 235, 0.2));
    border: 1px solid var(--glow-purple);
    color: var(--text-white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-layout h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #FFFFFF 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Modern Dynamic Collective Submission Panel */
.interactive-capture-form {
    padding: 40px;
}

.interactive-capture-form h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.btn-action-glow {
    background: linear-gradient(135deg, var(--glow-purple), var(--glow-blue));
    color: var(--text-white);
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-action-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(124, 58, 237, 0.7);
}

/* Grid Cards Ecosystem */
.priorities-matrix {
    padding: 100px 0;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.matrix-card {
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.matrix-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.matrix-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--gold);
}