:root {
    --team-bg: #f0f2f5;
    --team-text: #343a40;
    --team-primary: #6f42c1; /* Collaboration Purple */
    --team-secondary: #ffffff;
    --team-accent: #20c997; /* Success Green */
    --team-border: #dee2e6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--team-bg); color: var(--team-text);
    font-family: 'Rubik', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6; overflow-x: hidden;
}

.team-container { max-width: 1200px; margin: 0 auto; padding: 0 20px;}

/* Header */
.team-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; margin-bottom: 40px;
}
.team-brand {
    font-size: 24px; font-weight: 700; color: var(--team-primary);
    display: flex; align-items: center; gap: 10px;
}
.team-brand::before {
    content: '🌐'; font-size: 28px;
}
.team-nav { display: flex; gap: 30px; background: var(--team-secondary); padding: 15px 30px; border-radius: 50px; box-shadow: 0 4px 15px rgba(0,0,0,0.05);}
.team-nav a {
    font-size: 15px; font-weight: 500; color: #6c757d; text-decoration: none;
    transition: color 0.3s;
}
.team-nav a:hover, .team-nav a.active { color: var(--team-primary); }

/* Hero */
.team-hero {
    text-align: center; margin-bottom: 80px; padding: 60px 20px;
    background: var(--team-secondary); border-radius: 20px;
    box-shadow: 0 10px 40px rgba(111, 66, 193, 0.08); position: relative;
    overflow: hidden;
}
.team-hero::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(111, 66, 193, 0.05) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}
.th-content { position: relative; z-index: 1; }
.th-content h1 {
    font-size: 46px; font-weight: 800; margin-bottom: 20px; color: #212529;
    letter-spacing: -1px;
}
.th-content p { font-size: 18px; color: #6c757d; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto;}

.btn-team {
    display: inline-block; padding: 16px 40px; font-size: 16px; font-weight: 600;
    color: #fff; background: var(--team-primary); border-radius: 50px;
    transition: all 0.3s; margin: 0 10px; text-decoration: none;
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}
.btn-team:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(111, 66, 193, 0.4); }
.btn-team-alt {
    display: inline-block; padding: 16px 40px; font-size: 16px; font-weight: 600;
    color: var(--team-primary); background: transparent; border: 2px solid var(--team-primary);
    border-radius: 50px; transition: all 0.3s; margin: 0 10px; text-decoration: none;
}
.btn-team-alt:hover { background: rgba(111, 66, 193, 0.05); }

/* Stats */
.team-stats {
    display: flex; justify-content: center; gap: 30px; margin-bottom: 80px; flex-wrap: wrap;
}
.ts-item {
    background: var(--team-secondary); padding: 30px 40px; border-radius: 15px;
    text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.03); flex: 1; min-width: 200px;
}
.ts-val { font-size: 36px; font-weight: 800; color: var(--team-primary); margin-bottom: 5px;}
.ts-lbl { font-size: 14px; color: #6c757d; font-weight: 500;}

/* Features */
.team-features { margin-bottom: 80px;}
.team-features h2 { font-size: 32px; text-align: center; margin-bottom: 50px; color: #212529;}
.tf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;}
.tf-card {
    background: var(--team-secondary); padding: 40px 30px; border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); transition: transform 0.3s;
    text-align: center; border-bottom: 4px solid transparent;
}
.tf-card:hover { transform: translateY(-5px); border-bottom-color: var(--team-accent);}
.tf-icon {
    width: 60px; height: 60px; background: rgba(111, 66, 193, 0.1); border-radius: 50%;
    display: flex; justify-content: center; align-items: center; margin: 0 auto 20px;
    font-size: 24px; color: var(--team-primary);
}
.tf-card h3 { font-size: 20px; margin-bottom: 15px; color: #212529;}
.tf-card p { font-size: 15px; color: #6c757d;}

/* Nodes */
.team-nodes { margin-bottom: 80px; background: var(--team-secondary); padding: 50px; border-radius: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.03);}
.team-nodes h2 { font-size: 32px; text-align: center; margin-bottom: 40px; color: #212529;}
.tn-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px;}
.tn-item {
    padding: 10px 20px; background: var(--team-bg); border-radius: 30px;
    color: var(--team-text); font-weight: 500; border: 1px solid var(--team-border);
}
.tn-item span { color: var(--team-accent); margin-left: 10px; font-size: 12px;}

/* FAQ */
.team-faq { margin-bottom: 100px;}
.team-faq h2 { font-size: 32px; text-align: center; margin-bottom: 50px; color: #212529;}
.t-faq-item {
    background: var(--team-secondary); padding: 30px; border-radius: 15px;
    margin-bottom: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.t-fq { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: #212529;}
.t-fa { font-size: 15px; color: #6c757d;}

footer {
    text-align: center; padding: 40px 0; color: #adb5bd; font-size: 14px;
}

@media (max-width: 900px) {
    .tf-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .team-header { flex-direction: column; gap: 20px; }
    .team-nav { width: 100%; justify-content: center; flex-wrap: wrap;}
    .team-hero h1 { font-size: 36px; }
    .btn-team, .btn-team-alt { display: block; margin: 10px auto; width: 80%;}
}