/* Agent Kellie - Spy Theme (007 / Charlie's Angels) */
:root {
    --spy-gold: #D4AF37;
    --spy-silver: #C0C0C0;
    --spy-black: #0A0A0A;
    --spy-dark-grey: #1C1C1C;
    --spy-red: #8B0000;
    --spy-white: #F5F5F5;
}

.agent-kellie-body {
    background-color: var(--spy-black);
    color: var(--spy-white);
    font-family: 'Inter', sans-serif;
}

.agent-kellie-body h1, 
.agent-kellie-body h2, 
.agent-kellie-body h3 {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Classification Label */
.classification {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--spy-red);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Hero Section */
.kellie-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0A0A0A 50%, #1C1C1C 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.kellie-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Scope overlay effect */
.scope-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.scope-overlay::before,
.scope-overlay::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.scope-overlay::before {
    width: 300px;
    height: 300px;
}

.scope-overlay::after {
    width: 500px;
    height: 500px;
}

/* Crosshair */
.crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.crosshair::before,
.crosshair::after {
    content: '';
    position: absolute;
    background: rgba(212, 175, 55, 0.1);
}

.crosshair::before {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
}

.crosshair::after {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
}

.kellie-hero-content {
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.kellie-hero h1 {
    font-size: 5rem;
    color: var(--spy-gold);
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    letter-spacing: 8px;
}

.kellie-hero .tagline {
    font-size: 1.8rem;
    color: var(--spy-silver);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 4px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--spy-silver);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Features Section */
.kellie-features {
    padding: 100px 0;
    background-color: var(--spy-dark-grey);
}

.kellie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.kellie-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.kellie-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--spy-gold);
    transition: height 0.4s ease;
}

.kellie-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--spy-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

.kellie-card:hover::before {
    height: 100%;
}

.kellie-card i {
    font-size: 2.5rem;
    color: var(--spy-gold);
    margin-bottom: 20px;
}

.kellie-card h3 {
    color: var(--spy-gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.kellie-card p {
    color: var(--spy-silver);
    line-height: 1.7;
}

/* Mission Section */
.kellie-mission {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--spy-black), var(--spy-dark-grey));
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.mission-list {
    list-style: none;
    margin: 30px 0;
}

.mission-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--spy-silver);
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-list li i {
    color: var(--spy-gold);
    font-size: 1.2rem;
}

/* Agent Profile Visual */
.mission-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.agent-profile {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--spy-gold);
    padding: 40px;
    text-align: center;
    position: relative;
}

.agent-profile::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

.agent-silhouette {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 2px solid var(--spy-gold);
}

.agent-silhouette i {
    font-size: 4rem;
    color: var(--spy-gold);
}

.agent-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--spy-gold);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--spy-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Button */
.btn-spy {
    background-color: var(--spy-gold);
    color: var(--spy-black);
    padding: 18px 50px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
}

.btn-spy:hover {
    background-color: var(--spy-white);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

/* Multilingual Section */
.kellie-languages {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--spy-dark-grey), var(--spy-black));
}

.lang-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.lang-badge {
    padding: 15px 30px;
    border: 2px solid var(--spy-gold);
    color: var(--spy-gold);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.lang-badge:hover {
    background: var(--spy-gold);
    color: var(--spy-black);
}

.lang-badge i {
    font-size: 1.2rem;
}

/* Channel Grid */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.channel-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.channel-item:hover {
    border-color: var(--spy-gold);
    transform: translateY(-5px);
}

.channel-item i {
    font-size: 3rem;
    color: var(--spy-gold);
    margin-bottom: 20px;
}

.channel-item h4 {
    color: var(--spy-gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.channel-item p {
    color: var(--spy-silver);
    font-size: 0.95rem;
}

/* CTA Section */
.kellie-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--spy-black) 0%, #1a1a2e 100%);
    text-align: center;
    position: relative;
}

.kellie-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--spy-gold);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--spy-silver);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Footer overrides for spy theme */
.agent-kellie-body footer a {
    color: #ccc;
    transition: color 0.3s ease;
}

.agent-kellie-body footer a:hover {
    color: var(--spy-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .kellie-hero h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .kellie-hero .tagline {
        font-size: 1.2rem;
    }
    
    .mission-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .kellie-grid {
        grid-template-columns: 1fr;
    }
    
    .scope-overlay {
        width: 250px;
        height: 250px;
    }
    
    .scope-overlay::before {
        width: 200px;
        height: 200px;
    }
    
    .scope-overlay::after {
        width: 300px;
        height: 300px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}
