.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: rgba(251, 251, 253, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}
.sticky-nav.is-visible {
    transform: translateY(0);
}
.sticky-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}
.sticky-nav-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--hero);
}
.sticky-nav-cta {
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: var(--hero);
    padding: 8px 18px;
    border-radius: 980px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.sticky-nav-cta:hover {
    background: var(--accent);
}
