/* /Components/Pages/CvPage.razor.rz.scp.css */
/* ── CvPage layout ──────────────────────────────────── */
.cv-stage[b-bm49190109] {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Viewport — full width, nav panel floats over dead space */
.section-viewport[b-bm49190109] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slide/fade transitions */
.section-slide[b-bm49190109] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Forward: exit up, enter from below */
@keyframes slideOutUp-b-bm49190109 {
    from { opacity: 1; transform: translateY(0);     }
    to   { opacity: 0; transform: translateY(-28px); }
}
@keyframes slideInUp-b-bm49190109 {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* Backward: exit down, enter from above */
@keyframes slideOutDown-b-bm49190109 {
    from { opacity: 1; transform: translateY(0);    }
    to   { opacity: 0; transform: translateY(28px); }
}
@keyframes slideInDown-b-bm49190109 {
    from { opacity: 0; transform: translateY(-28px); }
    to   { opacity: 1; transform: translateY(0);     }
}

.slide-in-up[b-bm49190109]    { animation: slideInUp-b-bm49190109    0.28s ease both; }
.slide-out-up[b-bm49190109]   { animation: slideOutUp-b-bm49190109   0.28s ease both; }
.slide-in-down[b-bm49190109]  { animation: slideInDown-b-bm49190109  0.28s ease both; }
.slide-out-down[b-bm49190109] { animation: slideOutDown-b-bm49190109 0.28s ease both; }
/* /Components/Sections/SectionLanding.razor.rz.scp.css */
/* ── SectionLanding ─────────────────────────────────── */
.section-landing[b-wjx93jsk5m] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.landing-inner[b-wjx93jsk5m] {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

/* Avatar */
.avatar-ring-wrap[b-wjx93jsk5m] {
    padding: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #813081, #512BD4);
    margin-bottom: 0.5rem;
}

.landing-avatar[b-wjx93jsk5m] {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #1a1a2e;
}

.landing-name[b-wjx93jsk5m] {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #f4f4f8;
}

.landing-title[b-wjx93jsk5m] {
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    color: rgba(244, 244, 248, 0.6);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.landing-rule[b-wjx93jsk5m] {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #813081, #512BD4);
    border-radius: 2px;
    margin: 0.25rem auto;
}

.landing-stack[b-wjx93jsk5m] {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(244, 244, 248, 0.45);
    letter-spacing: 0.06em;
}

.landing-cta[b-wjx93jsk5m] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ── Typewriter — first load only ───────────────────── */
@keyframes typeReveal-b-wjx93jsk5m {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0%   0 0); }
}

@keyframes cursorBlink-b-wjx93jsk5m {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.typewriter-name[b-wjx93jsk5m] {
    animation: typeReveal-b-wjx93jsk5m 0.45s steps(22, end) 0.15s both;
    position: relative;
    display: inline-block;
}

.typewriter-title[b-wjx93jsk5m] {
    animation: typeReveal-b-wjx93jsk5m 0.4s steps(36, end) 0.62s both;
    position: relative;
    display: inline-block;
}

/* Cursor sits after the title and blinks briefly then fades */
.typewriter-title[b-wjx93jsk5m]::after {
    content: '|';
    color: #813081;
    font-weight: 300;
    margin-left: 2px;
    animation: cursorBlink-b-wjx93jsk5m 0.5s step-end 0.62s 4, fadeOut-b-wjx93jsk5m 0.3s ease 2.7s both;
}

@keyframes fadeOut-b-wjx93jsk5m {
    to { opacity: 0; }
}
/* /Components/Shared/CompactHeader.razor.rz.scp.css */
/* ── CompactHeader ───────────────────────────────────── */
.compact-header[b-1q05cy460b] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.5rem;
    background: rgba(15, 12, 30, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(129, 48, 129, 0.2);
    animation: headerSlideDown-b-1q05cy460b 0.25s ease both;
}

@keyframes headerSlideDown-b-1q05cy460b {
    from { opacity: 0; transform: translateY(-100%); }
    to   { opacity: 1; transform: translateY(0);     }
}

/* Identity area */
.compact-identity[b-1q05cy460b] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* On mobile the identity becomes a button — reset button styles */
.compact-identity--tap[b-1q05cy460b] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
    border-radius: 6px;
    transition: opacity 0.15s;
}

    .compact-identity--tap:active[b-1q05cy460b] {
        opacity: 0.7;
    }

.compact-avatar-wrap[b-1q05cy460b] {
    padding: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #813081, #512BD4);
    flex-shrink: 0;
}

.compact-avatar[b-1q05cy460b] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid #1a1a2e;
}

.compact-text[b-1q05cy460b] {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.compact-name[b-1q05cy460b] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f4f4f8;
    white-space: nowrap;
}

.compact-title[b-1q05cy460b] {
    font-size: 0.7rem;
    color: rgba(244, 244, 248, 0.45);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}

.compact-actions[b-1q05cy460b] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.compact-social-btn[b-1q05cy460b] {
    opacity: 0.75;
    transition: opacity 0.2s;
}

    .compact-social-btn:hover[b-1q05cy460b] {
        opacity: 1;
    }

/* Desktop: show icon buttons */
.compact-actions--desktop[b-1q05cy460b] {
    display: flex;
}

/* Mobile overlay buttons */
.compact-social-overlay__buttons[b-1q05cy460b] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.compact-social-overlay__btn[b-1q05cy460b] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(167,139,250,0.25);
    background: rgba(167,139,250,0.07);
    color: rgba(244,244,248,0.85);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

    .compact-social-overlay__btn:hover[b-1q05cy460b],
    .compact-social-overlay__btn:focus-visible[b-1q05cy460b] {
        background: rgba(167,139,250,0.15);
        border-color: rgba(167,139,250,0.55);
        color: #f4f4f8;
    }

    .compact-social-overlay__btn:active[b-1q05cy460b] {
        background: rgba(167,139,250,0.25);
    }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 600px) {
    /* Hide icon buttons — overlay handles this on mobile */
    .compact-actions--desktop[b-1q05cy460b] {
        display: none;
    }
}

@media (min-width: 601px) {
    /* On PC the identity tap does nothing visually — disable the pointer affordance */
    .compact-identity--tap[b-1q05cy460b] {
        cursor: default;
        pointer-events: none;
    }
}
/* /Components/Shared/CvSidebar.razor.rz.scp.css */
/* ???????????????????????????????????????????????????????????
   DESKTOP � permanent left panel
   ??????????????????????????????????????????????????????????? */
.cv-sidebar-desktop[b-2877fermtj] {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem 0;
    pointer-events: none; /* panel itself transparent to clicks */
}

/* Identity block at top */
.dsk-identity[b-2877fermtj] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0 1.25rem 0 1.5rem;
    margin-bottom: 1.25rem;
}

.dsk-monogram[b-2877fermtj] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #813081, #512BD4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #f4f4f8;
}

.dsk-id-text[b-2877fermtj] {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    overflow: hidden;
}

.dsk-name[b-2877fermtj] {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(244, 244, 248, 0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dsk-role[b-2877fermtj] {
    font-size: 0.65rem;
    color: rgba(244, 244, 248, 0.35);
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Thin gradient rule */
.dsk-rule[b-2877fermtj] {
    height: 1px;
    margin: 0 1.5rem 1.25rem;
    background: linear-gradient(90deg, transparent 0%, rgba(129, 48, 129, 0.4) 100%);
}

/* Nav list */
.dsk-nav[b-2877fermtj] {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    overflow-y: auto;
    max-height: 90vh;
    padding: 0;
    scrollbar-width: none;
    pointer-events: all; /* re-enable for the actual items */
    width: 100%;
}
.dsk-nav[b-2877fermtj]::-webkit-scrollbar { display: none; }

/* ?? Individual nav item ?? */
.dsk-item[b-2877fermtj] {
    position: relative;
    width: 100%;
    text-align: right;
    padding: 0.5rem 1.5rem 0.5rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 8px 0 0 8px;
    color: rgba(244, 244, 248, 0.45);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
}

/* Right-edge active bar */
.dsk-item-indicator[b-2877fermtj] {
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 2px;
    border-radius: 2px;
    background: #813081;
    opacity: 0;
    transition: opacity 0.2s, top 0.2s, bottom 0.2s;
}

.dsk-item:hover[b-2877fermtj] {
    color: rgba(244, 244, 248, 0.8);
    background: rgba(129, 48, 129, 0.08);
}

.dsk-item--active[b-2877fermtj] {
    color: #c084c0;
    background: rgba(129, 48, 129, 0.12);
    font-weight: 600;
}

.dsk-item--active .dsk-item-indicator[b-2877fermtj] {
    opacity: 1;
    top: 15%;
    bottom: 15%;
}

/* ?? Group header (collapsible) ?? */
.dsk-group[b-2877fermtj] {
    display: flex;
    flex-direction: column;
}

.dsk-group-btn[b-2877fermtj] {
    width: 100%;
    text-align: right;
    padding: 0.5rem 1.5rem 0.5rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 8px 0 0 8px;
    color: rgba(244, 244, 248, 0.4);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    transition: color 0.2s;
}

.dsk-group-btn:hover[b-2877fermtj] { color: rgba(244, 244, 248, 0.7); }

.dsk-group-label[b-2877fermtj] { flex: 1; }

.dsk-chevron[b-2877fermtj] {
    font-size: 1rem;
    color: rgba(244, 244, 248, 0.25);
    transition: transform 0.22s ease, color 0.18s;
    line-height: 1;
    margin-right: 0.25rem;
}

.dsk-group-btn--open .dsk-chevron[b-2877fermtj] {
    transform: rotate(90deg);
    color: #813081;
}

/* Child items */
.dsk-children[b-2877fermtj] {
    display: flex;
    flex-direction: column;
    gap: 0.02rem;
    overflow: hidden;
    animation: expandDown-b-2877fermtj 0.2s ease both;
}

@keyframes expandDown-b-2877fermtj {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.dsk-item--child[b-2877fermtj] {
    padding-right: 2.25rem;
    font-size: 0.83rem;
    color: rgba(244, 244, 248, 0.38);
}

.dsk-item--child:hover[b-2877fermtj] { color: rgba(244, 244, 248, 0.7); }

/* ???????????????????????????????????????????????????????????
   MOBILE � hamburger + drawer (desktop panel hidden)
   ??????????????????????????????????????????????????????????? */
.mob-nav[b-2877fermtj] { display: none; }

@media (max-width: 900px) {
    .cv-sidebar-desktop[b-2877fermtj] { display: none !important; }
    .mob-nav[b-2877fermtj] { display: block; }
}

/* Hamburger button */
.mob-hamburger[b-2877fermtj] {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 400;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(129, 48, 129, 0.45);
    background: rgba(15, 12, 30, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: border-color 0.2s, background 0.2s;
}

.mob-hamburger:hover[b-2877fermtj] {
    border-color: #813081;
    background: rgba(129, 48, 129, 0.2);
}

.mob-hamburger span[b-2877fermtj] {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(244, 244, 248, 0.75);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

.mob-hamburger--open span:nth-child(1)[b-2877fermtj] { transform: translateY(7px) rotate(45deg); }
.mob-hamburger--open span:nth-child(2)[b-2877fermtj] { opacity: 0; transform: scaleX(0); }
.mob-hamburger--open span:nth-child(3)[b-2877fermtj] { transform: translateY(-7px) rotate(-45deg); }

/* Backdrop */
.mob-backdrop[b-2877fermtj] {
    position: fixed;
    inset: 0;
    z-index: 350;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    animation: mobBackdropIn-b-2877fermtj 0.2s ease both;
}

@keyframes mobBackdropIn-b-2877fermtj {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Drawer panel */
.mob-drawer[b-2877fermtj] {
    position: fixed;
    bottom: 5rem;
    right: 1.25rem;
    z-index: 375;
    min-width: 200px;
    background: rgba(14, 11, 28, 0.97);
    border: 1px solid rgba(129, 48, 129, 0.3);
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    animation: mobDrawerUp-b-2877fermtj 0.22s ease both;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@keyframes mobDrawerUp-b-2877fermtj {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.mob-drawer-eyebrow[b-2877fermtj] {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(244, 244, 248, 0.28);
    margin: 0 0 0.35rem 0.75rem;
}

.mob-drawer-item[b-2877fermtj] {
    width: 100%;
    text-align: left;
    padding: 0.55rem 0.85rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(244, 244, 248, 0.65);
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mob-drawer-item:hover[b-2877fermtj] {
    background: rgba(129, 48, 129, 0.18);
    color: #f4f4f8;
}

.mob-drawer-item--active[b-2877fermtj] {
    color: #c084c0;
    background: rgba(129, 48, 129, 0.15);
}

.mob-group-btn--open .dsk-chevron[b-2877fermtj] {
    transform: rotate(90deg);
    color: #813081;
}
