:root {
    --bg: #000000;
    --accent: #0071e3;
    --zinc-apple: #1d1d1f;
    --blue: #0a84ff;
    --purple: #bf5af2;
}

/* Apple Style Typography */
.section-title { font-size: clamp(2.5rem, 8vw, 6rem); line-height: 1.1; letter-spacing: -0.04em; font-weight: 700; }
.sub-title { font-size: clamp(1.2rem, 3vw, 2rem); line-height: 1.3; letter-spacing: -0.02em; font-weight: 500; color: #86868b; }
.gradient-apple { 
    background: linear-gradient(180deg, #fff 0%, #a1a1a6 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

/* Glass & Cards */
.apple-glass {
    background: rgba(29, 29, 31, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.apple-glass:hover {
    background: rgba(29, 29, 31, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.01);
}

/* Spotlight & Grid */
.spotlight { position: fixed; width: 1000px; height: 1000px; background: radial-gradient(circle, rgba(0, 113, 227, 0.05) 0%, transparent 70%); pointer-events: none; z-index: 1; transform: translate(-50%, -50%); }
.cyber-grid { position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 100px 100px; mask-image: radial-gradient(circle at center, black, transparent 90%); z-index: 0; }

.aura { position: absolute; border-radius: 50%; filter: blur(140px); z-index: 0; pointer-events: none; opacity: 0.15; }
.aura-1 { width: 600px; height: 600px; top: -200px; right: -100px; background: var(--blue); }
.aura-2 { width: 700px; height: 700px; bottom: -200px; left: -100px; background: var(--purple); }

.scanline {
    width: 100%; height: 150px; z-index: 1;
    background: linear-gradient(0deg, rgba(10, 132, 255, 0) 0%, rgba(10, 132, 255, 0.05) 50%, rgba(10, 132, 255, 0) 100%);
    position: absolute; top: 0; left: 0;
    animation: scan 8s linear infinite; pointer-events: none; mix-blend-mode: screen;
}
@keyframes scan { from { transform: translateY(-100%); } to { transform: translateY(100vh); } }

.reveal { opacity: 0; transform: translateY(50px); transition: all 1.2s cubic-bezier(0.2, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Team Card */
.team-card {
    position: relative;
    border-radius: 3rem;
    overflow: hidden;
    background: #000000;
    height: 450px;
}
.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    z-index: 10;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1d1d1f, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
}

.brand-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    box-shadow: 0 0 15px var(--accent);
}
