/* ===================================
   PROFESSIONAL CAPITAL PAGE DESIGN
   =================================== */

/* Hero Banner - Compact & Professional */
.hero-banner {
    background: var(--white);
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--border-gray);
}

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

.hero-badge {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Compact Visual Stats */
.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
    border-color: var(--primary-red);
}

.stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-red);
    display: block;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Remove floating shapes */
.floating-shapes {
    display: none;
}

/* Compact Section Styling */
.section-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.section-intro h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-intro p {
    font-size: 0.9rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.section-intro.dark h2 {
    color: white;
}

.section-intro.dark p {
    color: rgba(255, 255, 255, 0.8);
}

/* Philosophy Section - Clean & Professional */
.philosophy-section {
    padding: 2rem 0;
    background: var(--white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-card {
    background: var(--light-gray);
    padding: 1.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-red);
}

.philosophy-card:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.philosophy-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.philosophy-card p {
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-size: 0.85rem;
}

.card-metric {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-red);
    background: rgba(220, 38, 38, 0.1);
    padding: 0.3rem 0.75rem;
    border-radius: 0.25rem;
    display: inline-block;
}

/* Focus Section - Compact Grid */
.focus-section {
    padding: 2rem 0;
    background: var(--light-gray);
}

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

.focus-card {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
    border-left: 3px solid transparent;
}

.focus-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tech-card:hover {
    border-left-color: #3b82f6;
}

.wellness-card:hover {
    border-left-color: #10b981;
}

.youth-card:hover {
    border-left-color: #f59e0b;
}

.esports-card:hover {
    border-left-color: #8b5cf6;
}

/* Remove background icons */
.card-background {
    display: none;
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.tag {
    background: var(--light-gray);
    color: var(--text-medium);
    padding: 0.25rem 0.6rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.tech-card .tag {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.wellness-card .tag {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.youth-card .tag {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.esports-card .tag {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.card-stat {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-medium);
}

/* Edge Section - Circular Design */
.edge-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--light-red) 0%, var(--white) 100%);
    position: relative;
}

.edge-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    position: relative;
}

/* Connecting Line */
.edge-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red) 0%, rgba(220, 38, 38, 0.3) 50%, var(--primary-red) 100%);
    z-index: 1;
}

.timeline-item {
    background: var(--white);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s ease;
    border: 3px solid var(--primary-red);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
    position: relative;
    z-index: 2;
    padding: 1.5rem;
}

.timeline-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.25);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-red) 100%);
}

/* Number badges for each circle */
.timeline-item::before {
    content: counter(circle-counter);
    counter-increment: circle-counter;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 3px solid var(--white);
}

.edge-timeline {
    counter-reset: circle-counter;
}

/* Remove emoji icons */
.timeline-icon {
    display: none;
}

.timeline-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.timeline-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.timeline-content p {
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-size: 0.8rem;
}

.timeline-metric {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-red);
    background: rgba(220, 38, 38, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    display: inline-block;
    text-align: center;
}

/* Fund Section - Clean Comparison */
.fund-section {
    padding: 2rem 0;
    background: var(--white);
}

.fund-comparison {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.fund-card {
    background: var(--light-gray);
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    flex: 1;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
}

.fund-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
    border-color: var(--primary-red);
}

.fund-2 {
    background: var(--light-red);
}

.fund-header {
    margin-bottom: 1rem;
    text-align: center;
}

.fund-badge {
    background: var(--primary-red);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 0.25rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.fund-badge.featured {
    background: var(--dark-red);
}

.fund-timeline {
    color: var(--text-medium);
    font-size: 0.8rem;
}

.fund-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
    text-align: center;
}

.fund-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--white);
    border-radius: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-dark);
}

/* Remove detail icons */
.detail-icon {
    display: none;
}

.fund-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.8rem;
}

.fund-arrow i {
    font-size: 1.2rem;
}

/* About Section - Professional Layout */
.about-section {
    padding: 2rem 0;
    background: var(--white);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-red);
    margin-bottom: 2rem;
}

.about-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.9rem;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vision-card,
.mission-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
    border-color: var(--primary-red);
}

.vm-icon {
    width: 50px;
    height: 50px;
    background: var(--light-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.vm-icon i {
    font-size: 1.2rem;
    color: var(--primary-red);
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.vision-card p,
.mission-card p {
    color: var(--text-medium);
    line-height: 1.5;
    font-size: 0.85rem;
}

/* Team Section - Integrated Design */
.team-section {
    padding: 2rem 0;
    background: var(--light-gray);
}

.founder-spotlight {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-red);
}

.founder-image-container {
    flex-shrink: 0;
}

.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-red);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    flex: 1;
}

.founder-header {
    margin-bottom: 1.5rem;
}

.founder-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.founder-title {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.founder-badge {
    background: var(--primary-red);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.founder-details {
    display: grid;
    gap: 1rem;
}

.founder-details .detail-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.founder-details .detail-item p {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.4;
}

.core-team h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.team-intro {
    color: var(--text-medium);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-red);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.team-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.team-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-red);
    flex-shrink: 0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.team-title {
    color: var(--primary-red);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-description {
    color: var(--text-medium);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.team-strengths {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.strength-tag {
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-red);
    padding: 0.2rem 0.5rem;
    border-radius: 0.2rem;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Advisory Team Section */
.advisory-team {
    margin-top: 3rem;
    text-align: center;
    width: 100%;
    margin-left: -2rem;
    margin-right: -2rem;
    padding: 0 2rem;
}

.advisory-team h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.advisory-intro {
    color: var(--text-medium);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 2rem;
}

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 0 auto 3rem auto;
    max-width: 1400px;
    justify-content: center;
    padding: 0 1rem;
}

/* Responsive design for advisory grid */
@media (max-width: 1200px) {
    .advisory-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .advisory-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    /* Mobile font optimizations for Capital page */
    .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.85rem !important;
        line-height: 1.5;
    }
    
    .stat-value {
        font-size: 0.95rem !important;
    }
    
    .stat-description {
        font-size: 0.7rem !important;
    }
    
    /* Team and Advisory sections */
    .founder-header h3, .advisory-info h4 {
        font-size: 0.95rem !important;
        line-height: 1.3;
    }
    
    .founder-summary p, .advisory-description {
        font-size: 0.8rem !important;
        line-height: 1.4;
    }
    
    .founder-title, .advisory-title {
        font-size: 0.75rem !important;
    }
    
    .team-description {
        font-size: 0.8rem !important;
        line-height: 1.4;
    }
    
    /* Expertise and strength tags */
    .expertise-tag, .strength-tag {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.6rem;
    }
    
    /* Advisory cards mobile optimization */
    .advisory-card {
        min-height: 280px; /* Reduced height for mobile */
        padding: 1.2rem;
    }
}

.advisory-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-red);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.advisory-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.advisory-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-red);
    margin: 0 auto 1rem;
    background: var(--light-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.advisory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisory-image i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.advisory-info {
    text-align: center;
}

.advisory-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.advisory-title {
    color: var(--primary-red);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.advisory-description {
    color: var(--text-medium);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.advisory-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: center;
}

.expertise-tag {
    background: var(--light-gray);
    color: var(--text-medium);
    padding: 0.2rem 0.5rem;
    border-radius: 0.2rem;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Value Add Section */
.value-add-section {
    margin-top: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-red);
}

.value-add-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.value-item {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.value-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.value-item h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.8rem;
    color: var(--text-medium);
    line-height: 1.4;
}

/* Remove all animations */
@keyframes fadeInUp,
@keyframes pulse,
@keyframes float {
    /* Remove animations */
}

.philosophy-card,
.focus-card,
.timeline-item,
.fund-card {
    animation: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .visual-stats,
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .fund-comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fund-arrow {
        transform: rotate(90deg);
    }
    

    
    .edge-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .edge-timeline::before {
        display: none;
    }
    
    .timeline-item {
        width: 160px;
        height: 160px;
        padding: 1rem;
    }
    
    .founder-spotlight {
        flex-direction: column;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        flex-direction: column;
        text-align: center;
    }
    
    .vision-mission-grid,
    .advisory-grid,
    .value-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .edge-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .edge-timeline::before {
        display: none;
    }
    
    .timeline-item {
        width: 160px;
        height: 160px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .advisory-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }
}