/* ============================================
   Career Connect — Shared Styles
   ============================================ */

/* --- Scroll reveal animations --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Nav blur --- */
.nav-blur {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* --- Photo overlay sections --- */
.photo-section {
    position: relative;
    overflow: hidden;
}
.photo-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 23, 20, 0.72);
    z-index: 1;
}
.photo-section > * {
    position: relative;
    z-index: 2;
}

/* --- Stat number styling --- */
.stat-number {
    font-variant-numeric: tabular-nums;
}

/* --- Mockup browser window --- */
.mockup-browser {
    background: #1a1a1e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.06);
}
.mockup-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-url {
    flex: 1;
    margin: 0 16px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    text-align: center;
    font-family: ui-monospace, monospace;
}
.mockup-content {
    position: relative;
    overflow: hidden;
    background: #09090b;
}
.mockup-content iframe {
    pointer-events: none;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top left;
}
