/* ─────────────────────────────────────
   TEAM PAGE — team.css
───────────────────────────────────── */

.team-body {
    background: #000;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── Full-page coming soon layout ── */
.team-main {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

/* ── Animated background orbs ── */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,255,0.3), transparent 70%);
    top: -100px; left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,200,255,0.2), transparent 70%);
    bottom: -80px; right: -80px;
    animation-delay: -3s;
}

.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(120,60,255,0.15), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -6s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -40px) scale(1.05); }
    66%       { transform: translate(-20px, 20px) scale(0.95); }
}

/* ════════════════════════════════════
   APPLE LIQUID GLASS CARD
   The "water glass" effect
════════════════════════════════════ */

.glass-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 32px;
    overflow: hidden;
    z-index: 10;

    /* liquid glass base */
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);

    /* layered borders — apple style */
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05) inset,
        0 32px 64px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(37, 99, 255, 0.12);
}

/* top shine — the "liquid" highlight */
.glass-shine {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.6) 30%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0.6) 70%,
        transparent 100%
    );
    pointer-events: none;
}

/* subtle inner light refraction */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.07) 0%,
        transparent 100%
    );
    border-radius: 32px 32px 0 0;
    pointer-events: none;
    z-index: 0;
}

/* bottom edge refraction */
.glass-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.glass-inner {
    position: relative;
    z-index: 2;
    padding: 52px 44px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* badge */
.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(37,99,255,0.12);
    border: 1px solid rgba(37,99,255,0.3);
    border-radius: 100px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: #4d8aff;
    text-transform: uppercase;
}

.cs-dot {
    width: 6px; height: 6px;
    background: #00c8ff;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,255,0.5); }
    50%       { box-shadow: 0 0 0 5px rgba(0,200,255,0); }
}

/* title */
.cs-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(38px, 8vw, 56px);
    font-weight: 800;
    letter-spacing: -2px;
    color: white;
    line-height: 1;
    background: linear-gradient(135deg, #fff 40%, rgba(255,255,255,0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cs-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 340px;
}

/* avatar stack */
.cs-avatars {
    display: flex;
    gap: -8px;
}

.cs-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.3);
    margin-left: -12px;
    backdrop-filter: blur(8px);
}

.cs-avatar:first-child { margin-left: 0; }

.cs-hint {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
}

.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(37,99,255,0.2);
    border: 1px solid rgba(37,99,255,0.4);
    border-radius: 10px;
    color: #4d8aff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(8px);
    margin-top: 4px;
}

.cs-btn:hover {
    background: rgba(37,99,255,0.35);
    transform: translateY(-2px);
}

/* ── simple footer ── */
.team-footer {
    text-align: center;
    padding: 20px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: #333;
    letter-spacing: 2px;
    border-top: 1px solid rgba(255,255,255,0.05);
}


/* ════════════════════════════════════
   CREW CARD TEMPLATE (commented out)
════════════════════════════════════ */

.crew-section {
    padding: 100px 8%;
    background: #0a0a0a;
}

.crew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
    align-items: end;
}

.crew-card {
    position: relative;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 0 28px 32px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
    margin-top: 60px; /* space for photo overflow */
}

.crew-card:hover {
    border-color: rgba(37,99,255,0.35);
    transform: translateY(-4px);
}

/* photo sits above the card */
.crew-photo-wrap {
    position: relative;
    margin: 0 auto;
    margin-top: -60px;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.crew-photo {
    width: 120px;
    height: 160px; /* taller so head pops above card */
    object-fit: cover;
    object-position: top;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 -8px 24px rgba(37,99,255,0.3));
}

.crew-name {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.crew-role {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: #4d8aff;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.crew-bio {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.crew-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.crew-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: #888;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
}

.crew-link:hover {
    color: white;
    border-color: rgba(255,255,255,0.2);
}


/* ── Mobile ── */
@media (max-width: 768px) {
    .glass-inner { padding: 36px 24px; }
    .cs-title    { font-size: 38px; }
    .orb-1       { width: 280px; height: 280px; }
    .orb-2       { width: 220px; height: 220px; }
    .crew-grid   { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}
