/* ============================================
   BETTY AI - INDIVIDUAL AGENT DETAIL PAGES
   ============================================ */

/* ---- Breadcrumb ---- */
.agent-breadcrumb {
    padding: 100px 0 0;
    background: #0f0a1e;
}

.agent-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.agent-breadcrumb a:hover {
    color: #36cb8f;
}

/* ---- Agent Hero ---- */
.agent-hero {
    padding: 40px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0a1e 0%, #1a1333 50%, #0f0a1e 100%);
}

.agent-hero-container {
    position: relative;
    z-index: 2;
}

.agent-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.agent-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.agent-status-badge.status-live {
    background: rgba(54, 203, 143, 0.12);
    color: #36cb8f;
    border: 1px solid rgba(54, 203, 143, 0.25);
}

.agent-status-badge.status-dev {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.agent-status-badge .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.agent-status-badge.status-live .status-dot {
    background: #36cb8f;
    box-shadow: 0 0 10px rgba(54, 203, 143, 0.6);
    animation: status-pulse 2s ease-in-out infinite;
}

.agent-status-badge.status-dev .status-dot {
    background: #f59e0b;
}

.agent-hero-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.agent-hero-title {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.agent-hero-title .title-line {
    display: block;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #ffffff;
}

.agent-hero-title .title-gradient {
    background: linear-gradient(135deg, #36cb8f 0%, #2f63e6 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agent-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 28px;
}

.agent-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.agent-hero-tags span {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.agent-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ---- Agent Problem Section ---- */
.agent-problem {
    padding: 120px 0;
    background: linear-gradient(180deg, #0f0a1e 0%, #1a1333 100%);
}

.agent-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.agent-problem-card {
    background: linear-gradient(135deg, rgba(26, 19, 51, 0.8) 0%, rgba(45, 34, 82, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.agent-problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f97316);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.agent-problem-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.agent-problem-card:hover::before {
    opacity: 1;
}

.problem-stat {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.agent-problem-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.agent-problem-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

/* ---- Capabilities Section ---- */
.agent-capabilities {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a1333 0%, #0f0a1e 100%);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.capability-card {
    background: linear-gradient(135deg, rgba(26, 19, 51, 0.9) 0%, rgba(45, 34, 82, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2f63e6, #36cb8f);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-6px);
    border-color: rgba(47, 99, 230, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.capability-card:hover::before {
    opacity: 1;
}

.capability-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.capability-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.capability-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

/* ---- How It Works (Agent Detail) ---- */
.agent-how-it-works {
    padding: 120px 0;
    background: linear-gradient(180deg, #0f0a1e 0%, #1a1333 100%);
}

.agent-flow {
    max-width: 700px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
}

.flow-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f63e6 0%, #36cb8f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
}

.flow-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.flow-content p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.flow-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(47, 99, 230, 0.5), rgba(54, 203, 143, 0.5));
    margin: 12px 0 12px 27px;
}

/* ---- Audience / Who It's For ---- */
.agent-audience {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a1333 0%, #0f0a1e 100%);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.audience-card {
    background: linear-gradient(135deg, rgba(26, 19, 51, 0.8) 0%, rgba(45, 34, 82, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s ease;
    text-align: center;
}

.audience-card:hover {
    transform: translateY(-4px);
    border-color: rgba(54, 203, 143, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.audience-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.audience-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* ---- Impact Section ---- */
.agent-impact {
    padding: 120px 0;
    background: linear-gradient(180deg, #0f0a1e 0%, #1a1333 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.impact-card {
    background: linear-gradient(135deg, rgba(26, 19, 51, 0.8) 0%, rgba(45, 34, 82, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s ease;
    text-align: center;
}

.impact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(54, 203, 143, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.impact-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.impact-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.impact-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* ---- Other Agents Section ---- */
.agent-other-agents {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a1333 0%, #0f0a1e 100%);
}

.other-agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.other-agent-card {
    background: linear-gradient(135deg, rgba(26, 19, 51, 0.9) 0%, rgba(45, 34, 82, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.other-agent-card:hover {
    transform: translateY(-6px);
    border-color: rgba(47, 99, 230, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.other-agent-icon {
    font-size: 2.5rem;
    margin-bottom: 4px;
}

.other-agent-card .agent-status {
    margin-bottom: 8px;
}

.other-agent-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.other-agent-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .capabilities-grid,
    .agent-problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-grid,
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-agents-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .agent-breadcrumb {
        padding-top: 80px;
    }
    
    .agent-hero {
        padding: 30px 0 80px;
    }
    
    .agent-hero-cta {
        flex-direction: column;
    }
    
    .capabilities-grid,
    .agent-problem-grid,
    .other-agents-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .agent-problem,
    .agent-capabilities,
    .agent-how-it-works,
    .agent-audience,
    .agent-impact,
    .agent-other-agents {
        padding: 80px 0;
    }
    
    .flow-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .flow-connector {
        margin-left: 0;
    }
}
