/* ============================================================================
   DEMO PAGE STYLES
   ============================================================================ */

/* ============================================================================
   Demo Hero Section
   ============================================================================ */

.demo-hero {
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    padding: 120px 24px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.demo-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(67, 73, 180, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.demo-hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.demo-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #212B36;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.demo-hero .hero-subhead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #637381;
    margin: 0;
    line-height: 1.6;
}

/* ============================================================================
   Agenda Pills (inline in hero)
   ============================================================================ */

.agenda-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.agenda-pill {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #454F5B;
    background: #FFFFFF;
    border: 1px solid #DFE3E8;
    border-radius: 20px;
    padding: 6px 14px;
    white-space: nowrap;
}

/* ============================================================================
   Choice Section
   ============================================================================ */

.demo-choice {
    padding: 40px 24px 80px;
    background: linear-gradient(180deg, #F9FAFB 0%, #F4F6F8 100%);
    width: 100%;
}

.demo-choice .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================================================================
   Perspective Cards
   ============================================================================ */

.perspective-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.perspective-card {
    background: #FFFFFF;
    border: 1px solid #DFE3E8;
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.perspective-card:hover {
    border-color: #4349B4;
    box-shadow: 0 12px 40px rgba(67, 73, 180, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.perspective-headshot {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B9BFFA 0%, #D4C1F3 100%);
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(67, 73, 180, 0.15);
}

.perspective-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.perspective-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212B36;
    margin: 0 0 4px 0;
}

.perspective-role {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #8653B5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 20px 0;
    padding: 6px 14px;
    background: rgba(134, 83, 181, 0.08);
    border-radius: 20px;
    display: inline-block;
}

.perspective-description {
    font-size: 0.875rem;
    color: #637381;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.perspective-bullets {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 28px 0;
    text-align: left;
    width: 100%;
}

.perspective-bullets li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 0.9375rem;
    color: #454F5B;
    line-height: 1.5;
    list-style: none !important;
}

.perspective-bullets li:last-child {
    margin-bottom: 0;
}

.perspective-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: #4349B4;
    border-radius: 50%;
}

.perspective-cta {
    margin-top: auto;
    width: 100%;
    padding-top: 8px;
}

.perspective-cta .btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.perspective-cta .btn-primary {
    background: #4349B4;
    color: #FFFFFF;
}

.perspective-cta .btn-primary:hover {
    background: #5D65E6;
    box-shadow: 0 4px 16px rgba(67, 73, 180, 0.3);
    transform: translateY(-1px);
}

/* ============================================================================
   Reassurance Section
   ============================================================================ */

.demo-reassurance {
    text-align: center;
    padding: 32px 24px 64px;
    background: #F4F6F8;
    width: 100%;
}

.demo-reassurance .container {
    max-width: 800px;
    margin: 0 auto;
}

.demo-reassurance p {
    font-size: 0.9375rem;
    color: #919EAB;
    margin: 0;
    font-style: italic;
}

/* ============================================================================
   Responsive
   ============================================================================ */

@media (max-width: 768px) {
    .demo-hero {
        padding: 60px 20px 48px;
    }

    .demo-hero h1 {
        font-size: 2rem;
    }

    .demo-hero .hero-subhead {
        font-size: 1.0625rem;
    }

    .agenda-pills {
        gap: 6px;
    }

    .agenda-pill {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .demo-choice {
        padding: 32px 20px 56px;
    }

    .perspective-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .perspective-card {
        padding: 32px 24px;
    }

    .perspective-headshot {
        width: 80px;
        height: 80px;
    }

    .perspective-name {
        font-size: 1.375rem;
    }
}

@media (max-width: 480px) {
    .demo-hero h1 {
        font-size: 1.75rem;
    }

    .perspective-card {
        padding: 28px 20px;
    }

    .perspective-bullets li {
        font-size: 0.875rem;
    }
}
