/* Styles for about.html */
/* About Hero */
.about-hero {
    text-align: center;
    padding: 3rem 0 4rem;
}

.about-hero-badge {
    margin-bottom: 1.5rem;
}

.about-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* About Section */
.about-section {
    margin-bottom: 2rem;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 0.75rem;
}

.about-section-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
}

.about-section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .about-section-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-section-text p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

/* Pillars */
.about-pillars {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pillar-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pillar-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    flex-shrink: 0;
    text-align: center;
    margin-top: 0.1rem;
}

.pillar-item strong {
    display: block;
    margin-bottom: 0.3rem;
}

.pillar-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Visual Code Card */
.about-visual-card {
    background: #0d1117;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.visual-card-header {
    background: #161b22;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #febc2e;
}

.dot.green {
    background: #28c840;
}

.visual-card-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
    font-family: var(--font-mono);
}

.visual-code {
    padding: 1.5rem;
    font-size: 0.82rem;
    line-height: 1.7;
    color: #c9d1d9;
    overflow-x: auto;
    font-family: var(--font-mono);
    white-space: pre;
    background: transparent;
    border: none;
    margin: 0;
}

.code-keyword {
    color: #ff7b72;
}

.code-class {
    color: #79c0ff;
}

.code-fn {
    color: #d2a8ff;
}

.code-str {
    color: #a5d6ff;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.25rem;
}

.team-name {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* CTA */
.about-cta {
    margin-top: 5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

.about-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.about-cta p {
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 2rem;
}

.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-hover);
    color: var(--text-primary);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    box-shadow: 0 0 15px var(--accent-glow);
}
