/* ============================================
   aiwarden About Page Styles
   ============================================ */

/* === About Hero === */
.about-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    text-align: center;
}

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

.about-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 76, 70, 0.1);
    border: 1px solid rgba(255, 76, 70, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === About Sections === */
.about-section {
    padding: 6rem 0;
}

.about-section-dark {
    background: var(--bg-darker);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

/* === Mission Layout === */
.mission-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: start;
}

.mission-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 76, 70, 0.03);
    border: 1px solid rgba(255, 76, 70, 0.15);
    border-radius: 24px;
    position: sticky;
    top: 120px;
}

.mission-logo-img {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 30px rgba(255, 76, 70, 0.3));
}

.mission-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mission-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.mission-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-text-large {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 500;
}

/* === Mission Pillars === */
.mission-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.mission-pillar {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mission-pillar:hover {
    border-color: rgba(255, 76, 70, 0.3);
    background: var(--bg-card-hover);
}

.pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 76, 70, 0.1);
    border-radius: 12px;
    color: var(--primary);
    flex-shrink: 0;
}

.pillar-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pillar-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pillar-text span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* === Stats Cards === */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === Values Grid NEW === */
.values-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card-new {
    position: relative;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 20%, var(--primary) 80%, transparent 100%);
    box-shadow: 0 0 20px var(--primary), 0 0 40px rgba(255, 76, 70, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card-new:hover {
    border-color: rgba(255, 76, 70, 0.4);
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(255, 76, 70, 0.1);
}

.value-card-new:hover::before {
    opacity: 1;
}

.value-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 76, 70, 0.15) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card-new:hover .value-card-glow {
    opacity: 1;
}

.value-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    opacity: 0.5;
    letter-spacing: 0.1em;
}

.value-icon-new {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 76, 70, 0.15) 0%, rgba(255, 76, 70, 0.05) 100%);
    border: 1px solid rgba(255, 76, 70, 0.2);
    border-radius: 14px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.value-card-new:hover .value-icon-new {
    background: linear-gradient(135deg, rgba(255, 76, 70, 0.25) 0%, rgba(255, 76, 70, 0.1) 100%);
    border-color: rgba(255, 76, 70, 0.4);
    transform: scale(1.05);
}

.value-card-new h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.value-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    font-style: italic;
}

.value-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* === Leadership Section === */
.leadership-section {
    background: var(--bg-dark);
}

/* Team Manifesto */
.team-manifesto {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-manifesto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 30%, var(--primary) 70%, transparent 100%);
    box-shadow: 0 0 20px var(--primary), 0 0 40px rgba(255, 76, 70, 0.5);
    opacity: 0.6;
}

.team-manifesto:hover {
    border-color: rgba(255, 76, 70, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 80px rgba(255, 76, 70, 0.05);
}

.team-manifesto-body {
    margin-bottom: 2.5rem;
}

.team-text-lead {
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.team-text-lead strong {
    color: var(--primary);
    font-weight: 700;
}

.team-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.team-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.team-text-closing {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-weight: 500;
    font-style: italic;
    padding-left: 1.25rem;
    border-left: 3px solid var(--primary);
}

/* Team Highlights */
.team-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.team-highlight {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.1rem;
    background: rgba(255, 76, 70, 0.05);
    border: 1px solid rgba(255, 76, 70, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.team-highlight:hover {
    border-color: rgba(255, 76, 70, 0.35);
    background: rgba(255, 76, 70, 0.08);
}

.team-highlight-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.team-highlight-icon {
    display: flex;
    align-items: center;
    color: var(--primary);
}

.team-highlight-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Team Tags */
.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 76, 70, 0.06);
    border: 1px solid rgba(255, 76, 70, 0.15);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.team-tag:hover {
    border-color: rgba(255, 76, 70, 0.35);
    color: var(--text-primary);
}

/* Team Responsive */
@media (max-width: 768px) {
    .team-manifesto {
        padding: 2.5rem 2rem;
    }

    .team-text-lead {
        font-size: 1.15rem;
    }

    .team-highlights {
        gap: 1rem;
    }

    .team-highlight {
        flex: 1 1 calc(50% - 0.5rem);
    }
}

@media (max-width: 480px) {
    .team-manifesto {
        padding: 2rem 1.5rem;
    }

    .team-highlight {
        flex: 1 1 100%;
    }
}

/* === CTA Section === */
.about-cta {
    background: var(--bg-darker);
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 76, 70, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(255, 76, 70, 0.2);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* === Disabled Link === */
.disabled-link {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .values-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 8rem 0 4rem;
    }

    .about-section {
        padding: 4rem 0;
    }

    .mission-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-logo {
        flex-direction: row;
        justify-content: center;
        position: static;
        padding: 1.5rem;
    }

    .mission-logo-img {
        width: 60px;
        height: 60px;
    }

    .mission-logo-text {
        font-size: 1.25rem;
    }

    .values-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card-new {
        padding: 2rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   Global Operations Section - Dot Matrix Style
   ============================================ */

.operations-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    overflow: hidden;
}

.operations-map-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

/* World Map - Dot Matrix Style */
.world-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0a12 0%, #06060a 100%);
    border: 1px solid rgba(255, 76, 70, 0.1);
    padding: 1.5rem;
}

.world-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.world-map-svg .map-dots circle {
    transition: fill 0.3s ease;
}

.world-map-wrapper:hover .map-dots circle {
    fill: #5a5a6a;
}

@media (max-width: 768px) {
    .world-map-wrapper {
        padding: 1rem;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .world-map-wrapper {
        padding: 0.5rem;
        border-radius: 12px;
    }
}

/* Single unified info card */
.operations-info-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.operations-info-card:hover {
    border-color: rgba(255, 76, 70, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.operations-info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.locations-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-flag {
    font-size: 1.5rem;
}

.location-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.location-connector {
    color: var(--text-muted);
    font-weight: 300;
}

.operations-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Plain text info (no card) */
.operations-text-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.operations-locations {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.operations-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 76, 70, 0.08);
    border: 1px solid rgba(255, 76, 70, 0.2);
    border-radius: 100px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.operations-email:hover {
    background: rgba(255, 76, 70, 0.15);
    border-color: rgba(255, 76, 70, 0.4);
    transform: translateY(-2px);
}

.operations-email svg {
    flex-shrink: 0;
}

/* Responsive - Operations */
@media (max-width: 768px) {
    .map-logo-marker {
        width: 40px;
        height: 40px;
    }

    .map-logo-img {
        width: 28px;
        height: 28px;
    }

    .miami-logo {
        top: 38%;
        left: 23%;
    }

    .madrid-logo {
        top: 28%;
        left: 50%;
    }

    .operations-info-card {
        padding: 1.5rem;
    }

    .location-name {
        font-size: 1rem;
    }

    .locations-row {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .world-map-wrapper {
        padding: 0.5rem;
        border-radius: 12px;
    }

    .map-logo-img {
        width: 24px;
        height: 24px;
    }

    .logo-pulse-ring {
        display: none;
    }

    .location-connector {
        display: none;
    }

    .locations-row {
        flex-direction: column;
        gap: 0.5rem;
    }
}
